uni-ticket-system/node_modules/licia/throttle.js

7 lines
136 B
JavaScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
var debounce = require('./debounce');
exports = function(fn, wait) {
return debounce(fn, wait, true);
};
module.exports = exports;