Skip to content

Instantly share code, notes, and snippets.

@esneko
Created July 30, 2019 12:04
Show Gist options
  • Save esneko/54570078c9f8972bf82fc81ca0985c81 to your computer and use it in GitHub Desktop.
Save esneko/54570078c9f8972bf82fc81ca0985c81 to your computer and use it in GitHub Desktop.
export const debounce = (callback, timeout) => {
let id
return (...args) => {
clearTimeout(id)
return id = setTimeout(() => callback(...args), timeout)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment