Skip to content

Instantly share code, notes, and snippets.

@vincentorback
vincentorback / debounce-es2015.js
Last active September 28, 2023 16:24
Smarter debouncing
export function debounce (fn, wait = 1) {
let timeout
return function (...args) {
clearTimeout(timeout)
timeout = setTimeout(() => fn.call(this, ...args), wait)
}
}