333 B
333 B
function debounce(func, ms) {
let timeout;
return function() {
clearTimeout(timeout);
timeout = setTimeout(() => func.apply(this, arguments), ms);
};
}
A call to debounce
returns a wrapper. When called, it schedules the original function call after given ms
and cancels the previous such timeout.