one
Version:
One is a new React Framework that makes Vite serve both native and web.
16 lines (15 loc) • 340 B
JavaScript
import * as React from "react";
function useConstant(fn) {
if (typeof document === "undefined") {
return React.useMemo(() => fn(), []);
}
const ref = React.useRef(void 0);
if (!ref.current) {
ref.current = {
v: fn()
};
}
return ref.current.v;
}
export { useConstant };
//# sourceMappingURL=useConstant.mjs.map