Blame view

天文台pc/tianwentai-ui/node_modules/motion-utils/dist/es/memo.mjs 237 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
  /*#__NO_SIDE_EFFECTS__*/
  function memo(callback) {
      let result;
      return () => {
          if (result === undefined)
              result = callback();
          return result;
      };
  }
  
  export { memo };
  //# sourceMappingURL=memo.mjs.map