Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

memoize.cjs.prod.js 251B

123456789101112
  1. "use strict";
  2. function memoize(fn) {
  3. var cache = {};
  4. return function(arg) {
  5. return void 0 === cache[arg] && (cache[arg] = fn(arg)), cache[arg];
  6. };
  7. }
  8. Object.defineProperty(exports, "__esModule", {
  9. value: !0
  10. }), exports.default = memoize;