()
| 353 | } |
| 354 | |
| 355 | getHttpsProxy() { |
| 356 | if (this.httpsProxy) { |
| 357 | return this.httpsProxy; |
| 358 | } |
| 359 | if (process.env.https_proxy) { |
| 360 | return process.env.https_proxy; |
| 361 | } |
| 362 | return undefined; |
| 363 | } |
| 364 | |
| 365 | getSocksProxy() { |
| 366 | if (this.socksProxy) { |
no outgoing calls
no test coverage detected