(path: string)
| 5 | } |
| 6 | |
| 7 | export function isAbsolutePath(path: string) { |
| 8 | const result = absolutePath.test(path); |
| 9 | return result; |
| 10 | } |
| 11 | |
| 12 | /** |
| 13 | * Return the last portion of a path. Similar to the Unix basename command. |
no outgoing calls
no test coverage detected