(path: string)
| 25 | await fileExists(path) && (await stat(path)).isDirectory() |
| 26 | |
| 27 | export const isSymbolicLink = async (path: string): Promise<boolean> => |
| 28 | (await lstat(path)).isSymbolicLink() |
| 29 | |
| 30 | export const realPathForSymbolicLink = async (path: string): Promise<string> => |
| 31 | await realpath(path) |
no outgoing calls
no test coverage detected