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.
|
'use strict';
|
|
const npmConf = require('npm-conf')();
|
|
|
|
module.exports = () => {
|
|
return process.env.HTTPS_PROXY ||
|
|
process.env.https_proxy ||
|
|
process.env.HTTP_PROXY ||
|
|
process.env.http_proxy ||
|
|
npmConf.get('https-proxy') ||
|
|
npmConf.get('http-proxy') ||
|
|
npmConf.get('proxy') ||
|
|
null;
|
|
};
|
|
|