(p: string)
| 10 | |
| 11 | // Fast sync version for metadata checks |
| 12 | export async function exists(p: string): Promise<boolean> { |
| 13 | return existsSync(p) |
| 14 | } |
| 15 | |
| 16 | export async function isDir(p: string): Promise<boolean> { |
| 17 | try { |
no outgoing calls
no test coverage detected