(url: string)
| 422 | const processedHtml = perEnvironmentState(() => new Map<string, string>()) |
| 423 | |
| 424 | const isExcludedUrl = (url: string) => |
| 425 | url[0] === '#' || isExternalUrl(url) || isDataUrl(url) |
| 426 | |
| 427 | // Same reason with `htmlInlineProxyPlugin` |
| 428 | isAsyncScriptMap.set(config, new Map()) |
no test coverage detected