Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Jul 18, 2023
1 parent 95729e1 commit 6a3a843
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/https-proxy-agent/src/parse-proxy-response.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ export function parseProxyResponse(
return;
}

const headerParts = buffered.slice(0,endOfHeaders).toString('ascii').split('\r\n');
const headerParts = buffered
.slice(0, endOfHeaders)
.toString('ascii')
.split('\r\n');
const firstLine = headerParts.shift();
if (!firstLine) {
socket.destroy();
Expand Down

1 comment on commit 6a3a843

@vercel
Copy link

@vercel vercel bot commented on 6a3a843 Jul 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

proxy-agents – ./

proxy-agents-git-main-tootallnate.vercel.app
proxy-agents.vercel.app
proxy-agents-tootallnate.vercel.app

Please sign in to comment.