(pathname, basePath)
| 651 | headers: { "Content-Type": "application/json" }, |
| 652 | ...init, |
| 653 | }); |
| 654 | } |
| 655 | |
| 656 | function catalogResponse(path, loops, method) { |
| 657 | if (path === "/catalog.json") { |
| 658 | return jsonResponse(catalogObject(loops), 200, CACHE_HEADERS, method); |
| 659 | } |
| 660 | if (path === "/sitemap.xml") { |
| 661 | return textResponse(renderSitemap(loops), "application/xml; charset=utf-8", 200, CACHE_HEADERS, method); |
no outgoing calls
no test coverage detected