Last active
July 19, 2021 15:52
-
-
Save wperron/69b81dc73064c0a175efe3967c9f71dd to your computer and use it in GitHub Desktop.
Deno Deploy recursive request
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
addEventListener("fetch", (e) => { | |
e.respondWith(handler(e)); | |
}); | |
function handler(e) { | |
return fetch(e.request) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment