"use strict"; const throttle = function(fn, wait = 1500) { var flag = true; return function() { if (flag) { fn.apply(this, arguments); flag = false; setTimeout(() => { flag = true; }, wait); } }; }; exports.throttle = throttle; //# sourceMappingURL=../../.sourcemap/mp-weixin/utils/throttle.js.map