test-repo/node_modules/@supabase/functions-js/src/helper.ts

9 lines
204 B
TypeScript

import { Fetch } from './types'
export const resolveFetch = (customFetch?: Fetch): Fetch => {
if (customFetch) {
return (...args) => customFetch(...args)
}
return (...args) => fetch(...args)
}