npm ignore nyc_output

This commit is contained in:
Randall Schmidt 2021-06-11 14:04:44 -04:00
parent 6bc5de6581
commit ef5ddf69e4

@ -97,6 +97,7 @@ async function getResponse(cache, requestArguments) {
if (cachedValue) {
return new Response(cachedValue, ejectSelfFromCache, true);
}
const fetchResponse = await fetch(...requestArguments);
const rawResponse = await createRawResponse(fetchResponse);
await cache.set(cacheKey, rawResponse);