()
| 76233 | function getEnvironmentValue(name) { |
| 76234 | if (process.env[name]) { |
| 76235 | return process.env[name]; |
| 76236 | } else if (process.env[name.toLowerCase()]) { |
| 76237 | return process.env[name.toLowerCase()]; |
| 76238 | } |
| 76239 | return void 0; |
| 76240 | } |
| 76241 | function loadEnvironmentProxyValue() { |
| 76242 | if (!process) { |
| 76243 | return void 0; |
| 76244 | } |
| 76245 | const httpsProxy = getEnvironmentValue(HTTPS_PROXY); |
| 76246 | const allProxy = getEnvironmentValue(ALL_PROXY); |
no test coverage detected