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.browser.cjs.js 260B

12345678910111213
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. function memoize(fn) {
  4. var cache = {};
  5. return function (arg) {
  6. if (cache[arg] === undefined) cache[arg] = fn(arg);
  7. return cache[arg];
  8. };
  9. }
  10. exports.default = memoize;