(_path: string)
| 6 | export const isSolFile = (_path: string) => getExtension(_path) === '.sol'; |
| 7 | |
| 8 | export const isDir = (_path: string) => !Boolean(getExtension(_path)); |
| 9 | |
| 10 | export const getDir = (_path: string) => isDir(_path) ? _path : path.parse(_path).dir; |
| 11 |
no test coverage detected