Skip to content

Instantly share code, notes, and snippets.

@dabroder
Created November 7, 2017 21:20
Show Gist options
  • Save dabroder/14c070e8c44d47422103022f4bfd3508 to your computer and use it in GitHub Desktop.
Save dabroder/14c070e8c44d47422103022f4bfd3508 to your computer and use it in GitHub Desktop.
small debounce implementation
export default (fn, delay, id = null) => (...arg) => {
clearTimeout(id)
id = setTimeout(fn, delay, ...arg)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment