Blame view

天文台pc/tianwentai-ui/node_modules/framer-motion/dist/es/utils/use-constant.mjs 587 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  "use client";
  import { useRef } from 'react';
  
  /**
   * Creates a constant value over the lifecycle of a component.
   *
   * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer
   * a guarantee that it won't re-run for performance reasons later on. By using `useConstant`
   * you can ensure that initialisers don't execute twice or more.
   */
  function useConstant(init) {
      const ref = useRef(null);
      if (ref.current === null) {
          ref.current = init();
      }
      return ref.current;
  }
  
  export { useConstant };
  //# sourceMappingURL=use-constant.mjs.map