vending-machine/mobile/node_modules/licia/throttle.js
2026-04-03 06:07:13 +08:00

7 lines
136 B
JavaScript

var debounce = require('./debounce');
exports = function(fn, wait) {
return debounce(fn, wait, true);
};
module.exports = exports;