📅  最后修改于: 2022-03-11 15:02:43.758000             🧑  作者: Mango
const debounce = (func, delay) => {
let clearTimer;
return function() {
const context = this;
const args = arguments;
clearTimeout(clearTimer);
clearTimer = setTimeout(() => func.apply(context, args), delay);
}
}