(candidates: string[], candidate: string)
| 123 | } |
| 124 | |
| 125 | function addCandidate(candidates: string[], candidate: string): void { |
| 126 | if (!candidates.includes(candidate)) candidates.push(candidate); |
| 127 | } |
| 128 | |
| 129 | function resolveLocalAssetCandidates(projectDir: string, url: string): string[] { |
| 130 | const cleanUrl = cleanAssetUrl(url); |
no outgoing calls
no test coverage detected