(userDataDir: string)
| 4 | export const CONTACTS_FACTS_DIR_NAME = 'facts' |
| 5 | |
| 6 | export function getContactsDir(userDataDir: string): string { |
| 7 | return path.join(userDataDir, CONTACTS_DIR_NAME) |
| 8 | } |
| 9 | |
| 10 | export function getContactsFactsCacheDir(userDataDir: string): string { |
| 11 | return path.join(getContactsDir(userDataDir), CONTACTS_FACTS_DIR_NAME) |
no outgoing calls
no test coverage detected