Skip to content

Instantly share code, notes, and snippets.

@jupegarnica
Last active December 11, 2020 10:01
Show Gist options
  • Select an option

  • Save jupegarnica/3ae9b81a67886b4440e3693eb19da72f to your computer and use it in GitHub Desktop.

Select an option

Save jupegarnica/3ae9b81a67886b4440e3693eb19da72f to your computer and use it in GitHub Desktop.
export const debounce = (fn, delay = 0) => {
let id;
return (...args) => {
if (id) {
clearTimeout(id);
}
id = setTimeout(fn, delay, ...args);
return id;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment