Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

satisfactory-json

Package Overview
Dependencies
2
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.60 to 0.0.61

4

lib/engine/Archive.js

@@ -41,3 +41,3 @@ "use strict";

function wrtBigUInt64LE(buf, value, offset, min, max) {
var lo = Number(jsbi_1.default.bitwiseAnd(value, jsbi_1.default.BigInt("0xffffffff")));
var lo = jsbi_1.default.toNumber(jsbi_1.default.bitwiseAnd(value, jsbi_1.default.BigInt("0xffffffff")));
buf[offset++] = lo;

@@ -50,3 +50,3 @@ lo = lo >> 8;

buf[offset++] = lo;
var hi = Number(jsbi_1.default.bitwiseAnd(jsbi_1.default.signedRightShift(value, jsbi_1.default.BigInt(32)), jsbi_1.default.BigInt("0xffffffff")));
var hi = jsbi_1.default.toNumber(jsbi_1.default.bitwiseAnd(jsbi_1.default.signedRightShift(value, jsbi_1.default.BigInt(32)), jsbi_1.default.BigInt("0xffffffff")));
buf[offset++] = hi;

@@ -53,0 +53,0 @@ hi = hi >> 8;

{
"name": "satisfactory-json",
"version": "0.0.60",
"version": "0.0.61",
"description": "Convert Satisfactory save files to JSON and back",

@@ -5,0 +5,0 @@ "author": "ficsit-felix",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc