Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

debounce.js 215B

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. }