UNPKG

165 BJavaScriptView Raw
1const timers = {}
2
3const debounce = (key, fn, delay = 250) => {
4 clearTimeout(timers[key])
5 timers[key] = setTimeout(fn, delay)
6}
7
8module.exports = {
9 debounce
10}