fortnite-replay-parser
Advanced tools
Comparing version 1.4.3 to 1.4.4
@@ -6,3 +6,3 @@ { | ||
}, | ||
"version": "1.4.3", | ||
"version": "1.4.4", | ||
"scripts": { | ||
@@ -9,0 +9,0 @@ "run": "node --experimental-wasm-simd test.js", |
@@ -177,2 +177,3 @@ const crypto = require('crypto'); | ||
let val = 0; | ||
let readBits = 0; | ||
@@ -187,2 +188,3 @@ if ((this.offset & 7) === 0) { | ||
count -= 8; | ||
readBits += 8; | ||
this.offset += 8; | ||
@@ -196,3 +198,3 @@ } | ||
let currentBit = 1; | ||
let currentBit = (1 << readBits); | ||
let currentByte = this.buffer[~~(this.offset / 8)]; | ||
@@ -199,0 +201,0 @@ let currentByteBit = 1 << (this.offset & 7); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
260958
7655