(_path: string)
| 10 | export const getDir = (_path: string) => isDir(_path) ? _path : path.parse(_path).dir; |
| 11 | |
| 12 | export const parentOf = (_path: string) => path.parse(_path).dir; |
| 13 | |
| 14 | export const containsChild = (_path: string, child: string) => fs.existsSync(path.join(_path, child)) |
| 15 |
no outgoing calls
no test coverage detected