UNPKG

@supabase/functions-js

Version:
9 lines (7 loc) 204 B
import { Fetch } from './types' export const resolveFetch = (customFetch?: Fetch): Fetch => { if (customFetch) { return (...args) => customFetch(...args) } return (...args) => fetch(...args) }