Last active
May 7, 2021 11:39
-
-
Save kt3k/ab2843be4f1f18293f48b85e2a26a9b7 to your computer and use it in GitHub Desktop.
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) => { | |
| 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