aboutsummaryrefslogtreecommitdiff
path: root/src/lib/functions.ts
blob: 0ec9f00730ada900f4ad092e6355158dadd0d9da (plain)
1
2
3
4
5
6
7
export function debounce(func: Function, timeout: number) {
  let timer: any
  return (...args: any) => {
    clearTimeout(timer)
    timer = setTimeout(() => { func.apply(this, args) }, timeout)
  }
}