Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
metcoder95 committed Jul 28, 2023
1 parent 36db29c commit 3f8bc59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -1619,7 +1619,7 @@ function writeH2 (client, session, request) {
}

let stream
const h2State = client[kHTTP2SessionState];
const h2State = client[kHTTP2SessionState]
const shouldCreateNewStream = h2State.streams.isEmpty() ||
h2State.openStreams < h2State.maxStreams

Expand Down
2 changes: 1 addition & 1 deletion lib/core/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const { kDestroyed, kBodyUsed } = require('./symbols')
const { IncomingMessage } = require('http')
const stream = require('stream')
const net = require('net')
const { InvalidArgumentError, ClientDestroyedError } = require('./errors')
const { InvalidArgumentError } = require('./errors')
const { Blob } = require('buffer')
const nodeUtil = require('util')
const { stringify } = require('querystring')
Expand Down

0 comments on commit 3f8bc59

Please sign in to comment.