Files
hoppscotch/functions/network.js
2020-01-15 09:10:14 +05:30

13 lines
326 B
JavaScript

import AxiosStrategy from "./strategies/AxiosStrategy";
import ProxyStrategy from "./strategies/ProxyStrategy";
const sendNetworkRequest = (req, store) => {
if (store.state.postwoman.settings.PROXY_ENABLED) {
return ProxyStrategy(req, store);
}
return AxiosStrategy(req, store);
};
export { sendNetworkRequest };