(dir: string)
| 99 | } |
| 100 | |
| 101 | async function safeReaddir(dir: string): Promise<string[]> { |
| 102 | try { |
| 103 | return await readdir(dir); |
| 104 | } catch { |
| 105 | return []; |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | async function isDirectory(path: string): Promise<boolean> { |
| 110 | try { |
no outgoing calls
no test coverage detected
searching dependent graphs…