(path: string)
| 12 | * @returns the base name without path information. |
| 13 | */ |
| 14 | export function getBasename(path: string) { |
| 15 | return path.replace(PATH, "").replace(EXT, ""); |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * return the extension of the file in the given path |
no outgoing calls
no test coverage detected