(path: string)
| 22 | } |
| 23 | |
| 24 | export async function pathExists(path: string): Promise<boolean> { |
| 25 | return fsSync.existsSync(path); |
| 26 | } |
| 27 | |
| 28 | export async function someFileExists(directory: string, filenames: string[]): Promise<boolean> { |
| 29 | for (let index = 0; index < filenames.length; index++) { |
no outgoing calls
no test coverage detected
searching dependent graphs…