(path: string)
| 9 | } |
| 10 | |
| 11 | export function isRelative(path: string): boolean { |
| 12 | return RELATIVE_PATH_REGEX.test(path); |
| 13 | } |
| 14 | |
| 15 | export function normalize(path: string): string { |
| 16 | return path.replace(ALL_BACKSLASHES_REGEX, '/'); |
nothing calls this directly
no test coverage detected
searching dependent graphs…