(id: string, test: string | RegExp)
| 1213 | } |
| 1214 | |
| 1215 | function isExternal(id: string, test: string | RegExp) { |
| 1216 | if (typeof test === 'string') { |
| 1217 | return id === test |
| 1218 | } else { |
| 1219 | return test.test(id) |
| 1220 | } |
| 1221 | } |
| 1222 | |
| 1223 | export class ChunkMetadataMap { |
| 1224 | private _inner = new Map<string, ChunkMetadata | AssetMetadata>() |
no outgoing calls
no test coverage detected