UNPKG

common-hook

Version:
13 lines (12 loc) 292 B
import { useRef } from "react"; /** * @name 返回的永远是最新值 * @description 返回当前最新值的 Hook,可以避免闭包问题 * @example * useLatest(fn) */ export const useLatest = (value) => { const ref = useRef(value); ref.current = value; return ref; };