zoujiandong ed5f8c5c22 3.19
2024-03-19 13:12:28 +08:00

14 lines
288 B
JavaScript

const throttle=function(fn,wait=1500){
var flag = true;
var timer = null;
return function(){
if(flag) {
fn.apply(this,arguments);
flag = false;
timer = setTimeout(() => {
flag = true
},wait)
}
}
}
export {throttle}