Skip to content

Instantly share code, notes, and snippets.

@kt3k
Last active May 7, 2021 11:39
Show Gist options
  • Select an option

  • Save kt3k/ab2843be4f1f18293f48b85e2a26a9b7 to your computer and use it in GitHub Desktop.

Select an option

Save kt3k/ab2843be4f1f18293f48b85e2a26a9b7 to your computer and use it in GitHub Desktop.
addEventListener("fetch", (e) => {
const id = Math.random();
console.log(`id=${id}`);
setInterval(() => {
console.log(`id=${id}`);
}, 10000);
e.respondWith(new Promise(() => {}));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment