(path: string)
| 104 | } |
| 105 | |
| 106 | async function exists(path: string) { |
| 107 | try { |
| 108 | await lstat(path) |
| 109 | return true |
| 110 | } catch { |
| 111 | return false |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | async function isDirectory(path: string) { |
| 116 | try { |
no outgoing calls
no test coverage detected