Files
zyt/TongjiUniApp/node_modules/licia/throttle.js
T
2026-08-11 17:41:36 +08:00

7 lines
136 B
JavaScript

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