MCPcopy
hub / github.com/davepoon/buildwithclaude / isProxyConfigured

Function isProxyConfigured

packages/bwc-cli/src/utils/proxy.ts:126–133  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

124 * Check if proxy is configured via environment variables
125 */
126export 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

Callers 4

getProxyDescriptionFunction · 0.85
createAddCommandFunction · 0.85
testProxySupportFunction · 0.85
proxy.test.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected