Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fortnite-replay-parser

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fortnite-replay-parser - npm Package Compare versions

Comparing version 1.4.3 to 1.4.4

2

package.json

@@ -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);

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc