We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc6fa69 commit 12b3295Copy full SHA for 12b3295
lib/adapters/http.js
@@ -4,7 +4,7 @@ import utils from './../utils.js';
4
import settle from './../core/settle.js';
5
import buildFullPath from '../core/buildFullPath.js';
6
import buildURL from './../helpers/buildURL.js';
7
-import {getProxyForUrl} from 'proxy-from-env';
+import proxyFromEnv from 'proxy-from-env';
8
import http from 'http';
9
import https from 'https';
10
import util from 'util';
@@ -83,7 +83,7 @@ function dispatchBeforeRedirect(options, responseDetails) {
83
function setProxy(options, configProxy, location) {
84
let proxy = configProxy;
85
if (!proxy && proxy !== false) {
86
- const proxyUrl = getProxyForUrl(location);
+ const proxyUrl = proxyFromEnv.getProxyForUrl(location);
87
if (proxyUrl) {
88
proxy = new URL(proxyUrl);
89
}
0 commit comments