debounce

PHOTO EMBED

Fri Aug 30 2024 05:45:29 GMT+0000 (Coordinated Universal Time)

Saved by @vasttininess #javascript

function debounce(fun, delay) {
    let i;
    return function (...args) {
        if (i) clearTimeout(i)
        setTimeout(() => {
            fun.apply(this, args)
        }, delay);
    }
}
content_copyCOPY