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

bplist-parser

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bplist-parser - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

7

bplistParser.js

@@ -135,3 +135,8 @@ 'use strict';

var realBuffer = buffer.slice(offset + 1, offset + 1 + length);
return realBuffer.readDoubleBE(0);
if (length === 4) {
return realBuffer.readFloatBE(0);
}
else if (length === 8) {
return realBuffer.readDoubleBE(0);
}
} else {

@@ -138,0 +143,0 @@ throw new Error("To little heap space available! Wanted to read " + length + " bytes, but only " + exports.maxObjectSize + " are available.");

2

package.json
{
"name": "bplist-parser",
"version": "0.0.3",
"version": "0.0.4",
"description": "Binary plist parser.",

@@ -5,0 +5,0 @@ "main": "bplistParser.js",

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