schnee effeckt und fehler Korektur

This commit is contained in:
2023-08-14 17:52:24 +02:00
parent 4a843d4936
commit 79af4e9907
6813 changed files with 343821 additions and 356128 deletions

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

@@ -1,13 +1,13 @@
'use strict';
var conf = require('rc')('npm');
const npmConf = require('npm-conf')();
module.exports = function () {
module.exports = () => {
return process.env.HTTPS_PROXY ||
process.env.https_proxy ||
process.env.HTTP_PROXY ||
process.env.http_proxy ||
conf['https-proxy'] ||
conf['http-proxy'] ||
conf.proxy ||
npmConf.get('https-proxy') ||
npmConf.get('http-proxy') ||
npmConf.get('proxy') ||
null;
};