3cx_tapi/src/debounce.js

14 lines
253 B
JavaScript
Raw Normal View History

2020-11-04 22:59:32 +01:00
export function debounce (func, wait) {
let timeout
return function executedFunction (...args) {
const later = () => {
clearTimeout(timeout)
func(...args)
}
clearTimeout(timeout)
timeout = setTimeout(later, wait)
}
}