(url: string)
| 102 | } |
| 103 | |
| 104 | export function isExplicitImportRequired(url: string): boolean { |
| 105 | return !isJSRequest(url) && !isCSSRequest(url) |
| 106 | } |
| 107 | |
| 108 | function normalizeResolvedIdToUrl( |
| 109 | environment: DevEnvironment, |
no test coverage detected