import { HookFetcherFn } from './types' const defaultFetcher: HookFetcherFn = async ({ options, fetch, normalize, }) => { const data = await fetch({ ...options }) return data && normalize ? normalize(data) : data } export default defaultFetcher