Searched refs:httpRes (Results 1 – 1 of 1) sorted by relevance
270 function onResponse(httpRes) { argument273 if (httpRes.statusCode !== 200) {275 `Unexpected ${httpRes.statusCode}: ${resBody}`288 httpRes.on('error', reject);289 httpRes.on('data', (chunk) => ArrayPrototypePush(chunks, chunk));290 httpRes.on('end', parseChunks);330 httpReq.on('response', (httpRes) => {331 if (httpRes.statusCode >= 400) {332 process.stderr.write(`Unexpected HTTP code: ${httpRes.statusCode}\n`);333 httpRes.pipe(process.stderr);[all …]