(...args)
| 6 | export { dirname } from "path" |
| 7 | |
| 8 | export const resolve: typeof path.resolve = (...args) => |
| 9 | slash(path.resolve(...args)) |
| 10 | |
| 11 | export const relative: typeof path.relative = (...args) => |
| 12 | slash(path.relative(...args)) |
no outgoing calls
no test coverage detected
searching dependent graphs…