()
| 76277 | function loadNoProxy() { |
| 76278 | const noProxy = getEnvironmentValue(NO_PROXY); |
| 76279 | noProxyListLoaded = true; |
| 76280 | if (noProxy) { |
| 76281 | return noProxy.split(",").map((item) => item.trim()).filter((item) => item.length); |
| 76282 | } |
| 76283 | return []; |
| 76284 | } |
| 76285 | function getDefaultProxySettingsInternal() { |
no test coverage detected