idnameraj's picture
Upload 3150 files
c212805 verified
Raw
History Blame Contribute Delete
203 Bytes
export const resolveFetch = (customFetch) => {
if (customFetch) {
return (...args) => customFetch(...args);
}
return (...args) => fetch(...args);
};
//# sourceMappingURL=helper.js.map