Skip to content

Commit

Permalink
Deal with Lint complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinso committed Oct 2, 2024
1 parent b1aab14 commit b3a991e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/cramFile/slice/decodeRecord.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ function readNullTerminatedString(buffer: Uint8Array) {
function parseTagValueArray(buffer: Uint8Array) {
const arrayType = String.fromCharCode(buffer[0]!)

//const length = Int32Array.from(buffer.slice(1))[0]!
const dataView = new DataView(buffer.buffer)
const littleEndian = true
const length = dataView.getUint32(1, littleEndian)
Expand Down

0 comments on commit b3a991e

Please sign in to comment.