debounce.js
When calling lodash.debounce using a script tag, I got a 'module is not defined' error, so I rewrote it as a simple function for easier use.
debounce.js
// Generic debounce function
const debounce = function (fn, delay = 16 /* 60fps */) {
let timeout;
return function (...args) {
const context = this;
if (timeout) clearTimeout(timeout);
timeout = setTimeout(() => {
fn.apply(context, args);
}, delay);
};
};
js