Files
hoppscotch/functions/network.js
2020-01-14 11:49:43 -05:00

14 lines
327 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 };