📜  debounce polyfill - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:43.758000             🧑  作者: Mango

代码示例1
const debounce = (func, delay) => {
    let clearTimer;
    return function() {
        const context = this;
        const args = arguments;
        clearTimeout(clearTimer);
        clearTimer = setTimeout(() => func.apply(context, args), delay);
    }
}