Skip to content

Commit 6a3a843

Browse files
committed
Prettier
1 parent 95729e1 commit 6a3a843

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/https-proxy-agent/src/parse-proxy-response.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ export function parseProxyResponse(
6363
return;
6464
}
6565

66-
const headerParts = buffered.slice(0,endOfHeaders).toString('ascii').split('\r\n');
66+
const headerParts = buffered
67+
.slice(0, endOfHeaders)
68+
.toString('ascii')
69+
.split('\r\n');
6770
const firstLine = headerParts.shift();
6871
if (!firstLine) {
6972
socket.destroy();

0 commit comments

Comments
 (0)