UNPKG

@taro-hooks/ahooks

Version:
7 lines 162 B
import { useRef } from '@taro-hooks/core'; function useLatest(value) { var ref = useRef(value); ref.current = value; return ref; } export default useLatest;