(_path: string)
| 4 | export const getExtension = (_path: string) => path.parse(_path).ext; |
| 5 | |
| 6 | export const isSolFile = (_path: string) => getExtension(_path) === '.sol'; |
| 7 | |
| 8 | export const isDir = (_path: string) => !Boolean(getExtension(_path)); |
| 9 |
no test coverage detected