()
| 11 | tlsModule = tls, |
| 12 | }) { |
| 13 | function getProxyUrl() { |
| 14 | return ( |
| 15 | env.HTTPS_PROXY || |
| 16 | env.https_proxy || |
| 17 | env.HTTP_PROXY || |
| 18 | env.http_proxy || |
| 19 | null |
| 20 | ) |
| 21 | } |
| 22 | |
| 23 | function shouldBypassProxy(hostname) { |
| 24 | const noProxy = env.NO_PROXY || env.no_proxy || '' |
no outgoing calls
no test coverage detected