(path: string)
| 28 | (await lstat(path)).isSymbolicLink() |
| 29 | |
| 30 | export const realPathForSymbolicLink = async (path: string): Promise<string> => |
| 31 | await realpath(path) |
| 32 | |
| 33 | export const findYAMLFilename = async (baseName: string): Promise<string | false> => { |
| 34 | let retVal = `${baseName}.yaml` |
no outgoing calls
no test coverage detected