UNPKG

shelving

Version:

Toolkit for using data in JavaScript.

7 lines (6 loc) 186 B
import { useRef } from "react"; export function useReduce(reduce, ...args) { const ref = useRef(undefined); ref.current = reduce(ref.current, ...args); return ref.current; }