You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
182 B

8 months ago
  1. export function debounce(func, delay) {
  2. let timer = null;
  3. return function() {
  4. clearTimeout(timer);
  5. timer = setTimeout(() => {
  6. func.apply(this, arguments);
  7. }, delay);
  8. };
  9. }