throttle

PHOTO EMBED

Fri Aug 30 2024 05:46:22 GMT+0000 (Coordinated Universal Time)

Saved by @vasttininess #javascript

function throttle(fun, delay) {
    let isRun = true;
    return function (...args) {
        if (isRun) {
            fun.apply(this, args)
            isRun = false
            setTimeout(() => {
                isRun = true
            }, delay)
        }
    }
}
content_copyCOPY