240614Note: debounce and throttle function of typescript version
export function debounce<F extends(...rest: any[]) => void>(
fn: F, delay = 200): (this: ThisType<F>, ...args: Parameters<F>) => void {
let timer: number | null = null;
return function d(this: ThisType<F>, ...args: Parameters<F>) {
if (timer) clearTimeout(timer);
timer = setTimeout(() => {
timer = null;
fn.call(this, ...args);
}, delay);
};
}
export function throttle<F extends(...args: any[]) => void>(
func: F,
limit = 1000): (this: ThisType<F>, ...args: Parameters<F>) => void {
let inThrottle: boolean;
return function t(this: ThisType<F>, ...args: Parameters<F>) {
if (inThrottle) return;
inThrottle = true;
setTimeout(() => {
func.apply(this, args);
inThrottle = false;
}, limit);
};
}
#debounce(1)#throttle(1)文章作者:Administrator
文章链接:http://halo.chenkeyan.com/archives/note-debounce-and-throttle-function-of-typescript-version
版权声明:本博客所有文章除特别声明外,均采用CC BY-NC-SA 4.0 许可协议,转载请注明出处!
评论