skip to content
developertype

snippets

filter:96 snippets
js-gen-throttle·javascript·general
function throttle(fn, ms) {
  let last = 0;
  return (...args) => {
    const now = Date.now();
    if (now - last >= ms) {
      last = now;
      fn(...args);
    }
  };
}