Skip to content

Instantly share code, notes, and snippets.

@webshru
Last active August 3, 2022 14:45
Show Gist options
  • Save webshru/478e0e12bc0eff850c98184ce72efea6 to your computer and use it in GitHub Desktop.
Save webshru/478e0e12bc0eff850c98184ce72efea6 to your computer and use it in GitHub Desktop.
function debounce (func, wait, immediate) {
let timeout
return function () {
const context = this
const args = arguments
const later = function () {
timeout = null
if (!immediate) {
func.apply(context, args)
}
}
const callNow = immediate && !timeout
clearTimeout(timeout)
timeout = setTimeout(later, wait)
if (callNow) {
func.apply(context, args)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment