Skip to content

Instantly share code, notes, and snippets.

@kt3k
Created September 23, 2021 07:58
Show Gist options
  • Save kt3k/0a6825ca2aa665d9a5ac0dbe40c44512 to your computer and use it in GitHub Desktop.
Save kt3k/0a6825ca2aa665d9a5ac0dbe40c44512 to your computer and use it in GitHub Desktop.
addEventListener("fetch", (event) => {
const x = event.respondWith(new Promise((resolve) => {
setTimeout(() => {
resolve(new Response(`${typeof x} ${x.constructor.name}`));
}, 300);
}));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment