()
| 124 | * Check if proxy is configured via environment variables |
| 125 | */ |
| 126 | export function isProxyConfigured(): boolean { |
| 127 | return !!( |
| 128 | process.env.HTTP_PROXY || |
| 129 | process.env.http_proxy || |
| 130 | process.env.HTTPS_PROXY || |
| 131 | process.env.https_proxy |
| 132 | ) |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * Get a human-readable description of the current proxy configuration |
no outgoing calls
no test coverage detected