(id: string)
| 7 | } |
| 8 | |
| 9 | export default function relativeId(id: string): string { |
| 10 | if (!isAbsolute(id)) return id; |
| 11 | return relative(resolve(), id); |
| 12 | } |
| 13 | |
| 14 | export function isPathFragment(name: string): boolean { |
| 15 | // starting with "/", "./", "../", "C:/" |
no test coverage detected
searching dependent graphs…