Albert's Blog
首页
想法
友链
朋友圈
关于
throttle
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:...
2024-06-14
Read More