You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
476 B
23 lines
476 B
var url = require('url');
|
|
|
|
var override = require('../utils/override');
|
|
|
|
function inlineRequestFrom(option) {
|
|
return override(
|
|
/* jshint camelcase: false */
|
|
proxyOptionsFrom(process.env.HTTP_PROXY || process.env.http_proxy),
|
|
option || {}
|
|
);
|
|
}
|
|
|
|
function proxyOptionsFrom(httpProxy) {
|
|
return httpProxy ?
|
|
{
|
|
hostname: url.parse(httpProxy).hostname,
|
|
port: parseInt(url.parse(httpProxy).port)
|
|
} :
|
|
{};
|
|
}
|
|
|
|
module.exports = inlineRequestFrom;
|