(url: string)
| 419 | // 2. resolve its extension so that urls with or without extension all map to |
| 420 | // the same module |
| 421 | async resolveUrl(url: string): Promise<ResolvedUrl> { |
| 422 | url = removeImportQuery(removeTimestampQuery(url)) |
| 423 | const mod = await this._getUnresolvedUrlToModule(url) |
| 424 | if (mod?.id) { |
| 425 | return [mod.url, mod.id, mod.meta] |
| 426 | } |
| 427 | return this._resolveUrl(url) |
| 428 | } |
| 429 | |
| 430 | updateModuleTransformResult( |
| 431 | mod: EnvironmentModuleNode, |
nothing calls this directly
no test coverage detected