(path: string)
| 2 | const RELATIVE_PATH_REGEX = /^\.?\.(\/|$)/; |
| 3 | |
| 4 | export function isAbsolute(path: string): boolean { |
| 5 | return ABSOLUTE_PATH_REGEX.test(path); |
| 6 | } |
| 7 | |
| 8 | export function isRelative(path: string): boolean { |
| 9 | return RELATIVE_PATH_REGEX.test(path); |
no test coverage detected
searching dependent graphs…