(p: Path)
| 119 | * Returns true if a path is absolute. |
| 120 | */ |
| 121 | export function isAbsolute(p: Path): boolean { |
| 122 | return p.startsWith(NormalizedSep); |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * Returns a path such that `join(from, relative(from, to)) == to`. |
no outgoing calls
no test coverage detected