test-repo/node_modules/@supabase/functions-js/dist/module/helper.js

7 lines
203 B
JavaScript

export const resolveFetch = (customFetch) => {
if (customFetch) {
return (...args) => customFetch(...args);
}
return (...args) => fetch(...args);
};
//# sourceMappingURL=helper.js.map