LoginSignup
1
2

More than 1 year has passed since last update.

TypeScript でライブラリを使わずに簡易 throttle, debounce

Last updated at Posted at 2022-10-10

凝ったオプションを使いたい場合は lodash を使いましょう

throttle.ts
function throttle(fn: (...args: any[]) => void, wait: number) {
  let timerId: number | null = null;
  return (...args: any[]) => {
    if (timerId !== null) {
      return;
    }
    timerId = window.setTimeout(() => {
      timerId = null;
      return fn(...args);
    }, wait);
  };
}
debounce.ts
function debounce(fn: (...args: any[]) => void, wait: number) {
  let timerId: number | null = null;
  return (...args: any[]) => {
    if (timerId) {
      clearTimeout(timerId);
    }
    timerId = window.setTimeout(() => {
      fn(...args);
    }, wait);
  };
}
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2