mirror of https://github.com/Chocobozzz/PeerTube
16 lines
395 B
TypeScript
16 lines
395 B
TypeScript
|
export function Debounce (config: { timeoutMS: number }) {
|
||
|
let timeoutRef: NodeJS.Timeout
|
||
|
|
||
|
return function (_target, _key, descriptor: PropertyDescriptor) {
|
||
|
const original = descriptor.value
|
||
|
|
||
|
descriptor.value = function (...args: any[]) {
|
||
|
clearTimeout(timeoutRef)
|
||
|
|
||
|
timeoutRef = setTimeout(() => {
|
||
|
original.apply(this, args)
|
||
|
}, config.timeoutMS)
|
||
|
}
|
||
|
}
|
||
|
}
|