Galerie und tage

This commit is contained in:
2021-11-23 17:56:26 +01:00
parent ff35366279
commit 5f873bee89
4693 changed files with 149659 additions and 301447 deletions

10
node_modules/get-proxy/index.js generated vendored
View File

@@ -1,13 +1,13 @@
'use strict';
const npmConf = require('npm-conf')();
var conf = require('rc')('npm');
module.exports = () => {
module.exports = function () {
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') ||
conf['https-proxy'] ||
conf['http-proxy'] ||
conf.proxy ||
null;
};