Skip to content

Commit

Permalink
fix lint failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurschreiber committed Oct 21, 2023
1 parent 0435a78 commit fd4d03a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/value-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -589,8 +589,7 @@ async function readPLPStream(parser: Parser): Promise<null | Buffer[]> {
await parser.waitForChunk();

Check warning on line 589 in src/value-parser.ts

View check run for this annotation

Codecov / codecov/patch

src/value-parser.ts#L589

Added line #L589 was not covered by tests
}

const expectedLength = parser.buffer.readBigUInt64LE(parser.position)

const expectedLength = parser.buffer.readBigUInt64LE(parser.position);
parser.position += 8;

if (expectedLength === PLP_NULL) {
Expand Down

0 comments on commit fd4d03a

Please sign in to comment.