1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 01:36:57 +02:00
LeetCode/js/debounce.js

23 lines
471 B
JavaScript
Raw Permalink Normal View History

/**
* @param {Function} fn
* @param {number} t milliseconds
* @return {Function}
*/
var debounce = function(fn, t) {
let timeout = null;
return function(...args) {
clearTimeout(timeout);
timeout = setTimeout(() => {
timeout = null;
fn(...args);
}, t);
}
};
/**
* const log = debounce(console.log, 100);
* log('Hello'); // cancelled
* log('Hello'); // cancelled
* log('Hello'); // Logged at t=100ms
*/