Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

weak-memoize.esm.js 372B

12345678910111213141516
  1. var weakMemoize = function weakMemoize(func) {
  2. // $FlowFixMe flow doesn't include all non-primitive types as allowed for weakmaps
  3. var cache = new WeakMap();
  4. return function (arg) {
  5. if (cache.has(arg)) {
  6. // $FlowFixMe
  7. return cache.get(arg);
  8. }
  9. var ret = func(arg);
  10. cache.set(arg, ret);
  11. return ret;
  12. };
  13. };
  14. export default weakMemoize;