UNPKG

shelving

Version:

Toolkit for using data in JavaScript.

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