(path: string)
| 22 | await fileExists(path) && (await stat(path)).isFile() |
| 23 | |
| 24 | export const isDir = async (path: string): Promise<boolean> => |
| 25 | await fileExists(path) && (await stat(path)).isDirectory() |
| 26 | |
| 27 | export const isSymbolicLink = async (path: string): Promise<boolean> => |
| 28 | (await lstat(path)).isSymbolicLink() |
no test coverage detected