index.js 140 B

1234567
  1. var throttle = require('./throttle');
  2. var debounce = require('./debounce');
  3. module.exports = {
  4. throttle: throttle,
  5. debounce: debounce
  6. };