(specifier: string)
| 16 | } |
| 17 | |
| 18 | function mockResolveImport(specifier: string): string { |
| 19 | return isPathImport(specifier) |
| 20 | ? `./${join("_import", specifier)}` |
| 21 | : specifier.replace(/^npm:/, "https://cdn.jsdelivr.net/npm/"); |
| 22 | } |
| 23 | |
| 24 | function mockResolveFile(specifier: string): string { |
| 25 | return isPathImport(specifier) |
nothing calls this directly
no test coverage detected