Skip to content

Instantly share code, notes, and snippets.

@Mix-Liten
Last active May 29, 2022 10:18
Show Gist options
  • Save Mix-Liten/ff4faf0238f364ff329fe25c4aa0d467 to your computer and use it in GitHub Desktop.
Save Mix-Liten/ff4faf0238f364ff329fe25c4aa0d467 to your computer and use it in GitHub Desktop.
Debounce Function
function debounce(cb, delay = 1000) {
let timeout
return (...args) => {
clearTimeout(timeout)
timeout = setTimeout(() => {
cb(...args)
}, delay)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment