throttle.js 136 B

123456
  1. var debounce = require('./debounce');
  2. exports = function(fn, wait) {
  3. return debounce(fn, wait, true);
  4. };
  5. module.exports = exports;