Skip to content

Instantly share code, notes, and snippets.

@moonformeli
Created March 26, 2020 16:49
Show Gist options
  • Save moonformeli/31ba5dc0976994b571901f5a103f60d2 to your computer and use it in GitHub Desktop.
Save moonformeli/31ba5dc0976994b571901f5a103f60d2 to your computer and use it in GitHub Desktop.
const debounce = (delay, fn) => {
let inDebounce = null;
return args => {
clearTimeout(inDebounce);
inDebounce = setTimeout(() => fn(args), delay);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment