nooktheme/resources/scripts/plugins/useDeepMemoize.ts
mowetentertainment1 eb5b65cec6 initial commit
2025-11-01 19:45:11 -04:00

13 lines
346 B
TypeScript

import { DependencyList, MutableRefObject, useRef } from 'react';
import isEqual from 'react-fast-compare';
export const useDeepMemoize = <T = DependencyList>(value: T): T => {
const ref: MutableRefObject<T | undefined> = useRef();
if (!isEqual(value, ref.current)) {
ref.current = value;
}
return ref.current as T;
};