Skip to content

Instantly share code, notes, and snippets.

@the-fejw
Created November 13, 2020 08:15
Show Gist options
  • Save the-fejw/58e2a67936f697abbd053f1a09befa0c to your computer and use it in GitHub Desktop.
Save the-fejw/58e2a67936f697abbd053f1a09befa0c to your computer and use it in GitHub Desktop.
function debounce(fn, wait) {
let timeout;
return function() {
if (timeout) {
clearTimeout(timeout);
timeout = undefined;
}
timeout = setTimeout(() => {
fn.apply(this, arguments);
}, wait)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment