We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95729e1 commit 6a3a843Copy full SHA for 6a3a843
packages/https-proxy-agent/src/parse-proxy-response.ts
@@ -63,7 +63,10 @@ export function parseProxyResponse(
63
return;
64
}
65
66
- const headerParts = buffered.slice(0,endOfHeaders).toString('ascii').split('\r\n');
+ const headerParts = buffered
67
+ .slice(0, endOfHeaders)
68
+ .toString('ascii')
69
+ .split('\r\n');
70
const firstLine = headerParts.shift();
71
if (!firstLine) {
72
socket.destroy();
0 commit comments