(path: string, cwd: string)
| 50 | } |
| 51 | |
| 52 | function hasIgnoredPathPart(path: string, cwd: string): boolean { |
| 53 | return relative(cwd, path) |
| 54 | .split(/[\\/]/) |
| 55 | .some((part) => SKIP_PATH_PARTS.has(part)); |
| 56 | } |
| 57 | |
| 58 | function collectAssetRefs(code: string, importer: string): string[] { |
| 59 | let out: string[] = []; |
no outgoing calls
no test coverage detected
searching dependent graphs…