EASYAIuniappNewUI/node_modules/licia/after.js
2025-02-08 18:50:38 +08:00

8 lines
144 B
JavaScript

exports = function(n, fn) {
return function() {
if (--n < 1) return fn.apply(this, arguments);
};
};
module.exports = exports;