UNPKG

@fruits-chain/react-native-xiaoshu

Version:
21 lines (18 loc) β€’ 504 B
import { useEffect, useRef } from 'react'; /** * ι‘΅ι’ζ›΄ζ–°εŽζ‰§θ‘Œε‰―δ½œη”¨ζ“δ½œ * @param effect ε‰―δ½œη”¨ζ“δ½œ * @param deps 更新触发依衖 */ const useUpdateEffect = (effect, deps) => { const mounted = useRef(false); useEffect(() => { if (!mounted.current) { mounted.current = true; } else { return effect(); } // eslint-disable-next-line react-hooks/exhaustive-deps }, deps); }; export default useUpdateEffect; //# sourceMappingURL=useUpdateEffect.js.map