(parsed *url.URL)
| 245 | } |
| 246 | |
| 247 | func webFetchProxyEnabledForURL(parsed *url.URL) bool { |
| 248 | return webFetchProxyURLForRequest(parsed) != nil |
| 249 | } |
| 250 | |
| 251 | func noProxyMatches(host string) bool { |
| 252 | raw := strings.TrimSpace(os.Getenv("NO_PROXY")) |
nothing calls this directly
no test coverage detected