(source: string, importer: string | undefined)
| 809 | } |
| 810 | |
| 811 | function normalizeRelativeExternalId(source: string, importer: string | undefined): string { |
| 812 | return isRelative(source) |
| 813 | ? importer |
| 814 | ? resolve(importer, '..', source) |
| 815 | : resolve(source) |
| 816 | : source; |
| 817 | } |
| 818 | |
| 819 | function addChunkNamesToModule( |
| 820 | module: Module, |
no test coverage detected
searching dependent graphs…