Skip to content

Instantly share code, notes, and snippets.

@Jaezmien
Last active July 25, 2021 03:14
Show Gist options
  • Save Jaezmien/47f0fa638335557aa489c44e19e17669 to your computer and use it in GitHub Desktop.
Save Jaezmien/47f0fa638335557aa489c44e19e17669 to your computer and use it in GitHub Desktop.
⏱ Small debounce function
const debounce = function(f, t) {
let id;
return function() {
if( id ) clearTimeout(id);
id = setTimeout(() => {id = null; f()}, t);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment