(request: string)
| 81 | export const isHTMLProxy = (id: string): boolean => isHtmlProxyRE.test(id) |
| 82 | |
| 83 | export const isHTMLRequest = (request: string): boolean => |
| 84 | htmlLangRE.test(request) |
| 85 | |
| 86 | // HTML Proxy Caches are stored by config -> filePath -> index |
| 87 | export const htmlProxyMap: WeakMap< |