package.src.utils.throttle.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alpinejs Show documentation
Show all versions of alpinejs Show documentation
The rugged, minimal JavaScript framework
The newest version!
export function throttle(func, limit) {
let inThrottle
return function() {
let context = this, args = arguments
if (! inThrottle) {
func.apply(context, args)
inThrottle = true
setTimeout(() => inThrottle = false, limit)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy