(html: string, htmlFilePath: string)
| 42 | } |
| 43 | |
| 44 | function inlineHtml(html: string, htmlFilePath: string): string { |
| 45 | return inlineHtmlLocalAssets(html, htmlFilePath); |
| 46 | } |
| 47 | |
| 48 | async function handle(_req: Request, url: URL): Promise<Response | null> { |
| 49 | const prefix = `${HTML_ASSET_ROUTE_PREFIX}/`; |
nothing calls this directly
no test coverage detected