Socket
Socket
Sign inDemoInstall

satisfactory-json

Package Overview
Dependencies
0
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.13 to 0.0.14

1

lib/json2sav.js

@@ -290,2 +290,3 @@ "use strict";

case 'InventoryStack':
case 'ProjectileData':
for (const prop of property.value.properties) {

@@ -292,0 +293,0 @@ this.writeProperty(prop);

32

lib/sav2json.js

@@ -485,17 +485,19 @@ "use strict";

case 'RemovedInstanceArray':
case 'InventoryStack': {
const props = [];
while (this.readProperty(buffer, props)) { }
properties.push({
name,
type: prop,
index,
structUnknown: unknown,
value: {
type,
properties: props
}
});
break;
}
case 'InventoryStack':
case 'ProjectileData':
{
const props = [];
while (this.readProperty(buffer, props)) { }
properties.push({
name,
type: prop,
index,
structUnknown: unknown,
value: {
type,
properties: props
}
});
break;
}
case 'InventoryItem': {

@@ -502,0 +504,0 @@ const unk1 = buffer.readLengthPrefixedString();

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

@@ -5,0 +5,0 @@ "main": "lib/index.js",

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc