Run prettier

This commit is contained in:
dangered wolf 2022-07-16 13:23:16 -04:00
parent 3d24c45b7e
commit 1241dabc00
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 3 additions and 5 deletions

View file

@ -134,7 +134,7 @@ const cacheWrapper = async (event: FetchEvent): Promise<Response> => {
const cacheKey = new Request(cacheUrl.toString(), request);
const cache = caches.default;
switch(request.method) {
switch (request.method) {
case 'GET':
let cachedResponse = await cache.match(cacheKey);
@ -167,15 +167,13 @@ const cacheWrapper = async (event: FetchEvent): Promise<Response> => {
case 'OPTIONS':
return new Response('', {
headers: {
'allow': Constants.RESPONSE_HEADERS.allow
allow: Constants.RESPONSE_HEADERS.allow
},
status: 204
});
default:
return new Response('', { status: 405 });
}
};
/*