UNPKG

react-http-fetch

Version:

An http library for React JS built on top of native JS fetch

8 lines (7 loc) 311 B
import { useCallback } from 'react'; import { useCompareRef } from './use-compare-ref'; export function useCompareCallback(callback, deps, compare) { var depsRef = useCompareRef(deps, compare); // eslint-disable-next-line react-hooks/exhaustive-deps return useCallback(callback, depsRef.current); }