1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
LeetCode/problems/debounce.js
Matej Focko b573899153
problems(js): add “2627. Debounce”
Signed-off-by: Matej Focko <me@mfocko.xyz>
2023-05-19 14:47:50 +02:00

22 lines
471 B
JavaScript

/**
* @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
*/