7 lines
203 B
JavaScript
7 lines
203 B
JavaScript
export const resolveFetch = (customFetch) => {
|
|
if (customFetch) {
|
|
return (...args) => customFetch(...args);
|
|
}
|
|
return (...args) => fetch(...args);
|
|
};
|
|
//# sourceMappingURL=helper.js.map
|