(basePath: string, ...paths: string[])
| 75 | * Static access to `resolve`s. |
| 76 | */ |
| 77 | export function resolve(basePath: string, ...paths: string[]): AbsoluteFsPath { |
| 78 | return fs.resolve(basePath, ...paths); |
| 79 | } |
| 80 | |
| 81 | /** Returns true when the path provided is the root path. */ |
| 82 | export function isRoot(path: AbsoluteFsPath): boolean { |
no test coverage detected
searching dependent graphs…