Home
last modified time | relevance | path

Searched refs:noProxyZone (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/npm/node_modules/request/lib/
DgetProxyFromURI.js25 return noProxyList.map(parseNoProxyZone).some(function (noProxyZone) { argument
26 var isMatchedAt = hostname.indexOf(noProxyZone.hostname)
29 (isMatchedAt === hostname.length - noProxyZone.hostname.length)
32 if (noProxyZone.hasPort) {
33 return (port === noProxyZone.port) && hostnameMatched
/third_party/node/deps/npm/node_modules/node-gyp/lib/
Dproxy.js28 return noProxyList.map(parseNoProxyZone).some(function (noProxyZone) { argument
29 var isMatchedAt = hostname.indexOf(noProxyZone.hostname)
32 (isMatchedAt === hostname.length - noProxyZone.hostname.length)
35 if (noProxyZone.hasPort) {
36 return (port === noProxyZone.port) && hostnameMatched