Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju committed Jun 13, 2023
1 parent cddece8 commit d2897cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/node/polyfills/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ class ClientRequest extends OutgoingMessage {
incoming.statusMessage = res.statusText;
incoming.upgrade = null;

for (const [key, value] of res.headers) {
for (const [key, _value] of res.headers) {
if (key.toLowerCase() === "upgrade") {
incoming.upgrade = true;
break;
Expand Down

0 comments on commit d2897cb

Please sign in to comment.