芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/public_html/node_modules/webpack/lib/util/memoize.js
/* MIT License http://www.opensource.org/licenses/mit-license.php */ "use strict"; /** @template T @typedef {function(): T} FunctionReturning */ /** * @template T * @param {FunctionReturning
} fn memorized function * @returns {FunctionReturning
} new function */ const memoize = fn => { let cache = false; /** @type {T} */ let result = undefined; return () => { if (cache) { return result; } else { result = fn(); cache = true; // Allow to clean up memory for fn // and all dependent resources fn = undefined; return result; } }; }; module.exports = memoize;