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.

1234567891011121314
  1. module.exports = debounce;
  2. function debounce(fn, ms) {
  3. if (ms == null)
  4. ms = 100;
  5. var timeout = null;
  6. return function() {
  7. if (timeout != null)
  8. clearTimeout(timeout);
  9. timeout = setTimeout(fn, ms);
  10. }
  11. }