Skip to content

Instantly share code, notes, and snippets.

@libasoles
Last active June 26, 2020 19:58
Show Gist options
  • Save libasoles/3e948b1e6447c2b0d3943ad4355d8652 to your computer and use it in GitHub Desktop.
Save libasoles/3e948b1e6447c2b0d3943ad4355d8652 to your computer and use it in GitHub Desktop.
Clear newspapers timeouts
// create a dummy timeout
let id = window.setTimeout(() => {}, 0);
// count down ids from latest to remove them all
while (id--) {
window.clearTimeout(id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment