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

11 lines
210 B
JavaScript

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