(filePath: PathString, extension?: string)
| 101 | * Static access to `basename`. |
| 102 | */ |
| 103 | export function basename(filePath: PathString, extension?: string): PathSegment { |
| 104 | return fs.basename(filePath, extension) as PathSegment; |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Returns true if the given path is locally relative. |
no test coverage detected
searching dependent graphs…