Your IP : 216.73.216.79


Current Path : /var/www/html/redd/node_modules/alpinejs/src/utils/
Upload File :
Current File : /var/www/html/redd/node_modules/alpinejs/src/utils/throttle.js

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)
        }
    }
}