(from: T, to: T)
| 94 | * Static access to `relative`. |
| 95 | */ |
| 96 | export function relative<T extends PathString>(from: T, to: T): PathSegment | AbsoluteFsPath { |
| 97 | return fs.relative(from, to); |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * Static access to `basename`. |
no test coverage detected