@df8080/vue2-ui
Version:
🎨 一个基于 Vue 2 的 UI 组件库,目前主要面向微信小程序开发场景,也适用于其他移动端项目。
27 lines (21 loc) • 516 B
JavaScript
function throttle(func, limit = 500, immediate = true) {
let lastFunc
let lastRan
return function (...args) {
const context = this
if (!lastRan && immediate) {
func.apply(context, args)
lastRan = Date.now()
}
if (lastFunc) {
clearTimeout(lastFunc)
}
lastFunc = setTimeout(() => {
if (Date.now() - lastRan >= limit) {
func.apply(context, args)
lastRan = Date.now()
}
}, limit - (Date.now() - lastRan))
}
}
export default throttle