All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g2601_2700.s2627_debounce.solution.ts Maven / Gradle / Ivy

There is a newer version: 1.34
Show newest version
// #Medium #2023_08_31_Time_50_ms_(98.23%)_Space_42.5_MB_(83.54%)

type F = (...p: any[]) => any

function debounce(fn: F, t: number): F {
    let ref = null
    return function (...args) {
        if (ref !== null) {
            clearTimeout(ref)
        }
        ref = setTimeout(() => fn(...args), t)
    }
}

/*
 * const log = debounce(console.log, 100);
 * log('Hello'); // cancelled
 * log('Hello'); // cancelled
 * log('Hello'); // Logged at t=100ms
 */

export { debounce }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy