(p: string)
| 41 | } |
| 42 | |
| 43 | async function exists(p: string): Promise<boolean> { |
| 44 | try { await fs.access(p); return true; } catch { return false; } |
| 45 | } |
| 46 | |
| 47 | async function findFile(root: string, names: string[]): Promise<string | null> { |
| 48 | for (const name of names) { |
no outgoing calls
no test coverage detected