Skip to content

Instantly share code, notes, and snippets.

@corycook
Last active March 19, 2019 20:39
Show Gist options
  • Select an option

  • Save corycook/fc8f14be6bc97f5ce34c3ff66faa4b6c to your computer and use it in GitHub Desktop.

Select an option

Save corycook/fc8f14be6bc97f5ce34c3ff66faa4b6c to your computer and use it in GitHub Desktop.
A really simple debounce function.
function debounce(fn, ms) {
let id;
return function() {
clearTimeout(id);
id = setTimeout(() => fn.apply(this, arguments), ms);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment