File size: 203 Bytes
c212805
 
 
 
 
 
 
1
2
3
4
5
6
7
export const resolveFetch = (customFetch) => {
    if (customFetch) {
        return (...args) => customFetch(...args);
    }
    return (...args) => fetch(...args);
};
//# sourceMappingURL=helper.js.map