(filePath: string)
| 47 | } |
| 48 | |
| 49 | export function stripExtname(filePath: string): string { |
| 50 | const ext = path.extname(filePath) |
| 51 | if (!ext.length) return filePath |
| 52 | return filePath.slice(0, -ext.length) |
| 53 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…