Skip to content

Instantly share code, notes, and snippets.

@LucasFsc
Created August 29, 2020 19:32
Show Gist options
  • Save LucasFsc/f71a8b45e9a7920b5f875552c0f658ba to your computer and use it in GitHub Desktop.
Save LucasFsc/f71a8b45e9a7920b5f875552c0f658ba to your computer and use it in GitHub Desktop.
Debounce JS
let timer = null
export default (callback = () => {}, timing = 300) => {
if (timer) clearTimeout(timer)
timer = setTimeout(callback, timing)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment