You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let deBounce = function (fn,delay){
let timer=null
return function (..args) {
if(timer) clearTimeout(timer)
timer = setTimeout(()=>{
fn(..args)
},delay)
}
}
The text was updated successfully, but these errors were encountered:
2.7.1节流函数这里
The text was updated successfully, but these errors were encountered: