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

seek-bzip

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

seek-bzip - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

2

package.json
{
"name": "seek-bzip",
"version": "0.0.2",
"version": "0.0.3",
"author": "Eli Skeggs, C. Scott Ananian, Kevin Kwok",

@@ -5,0 +5,0 @@ "description": "a pure-javascript Node.JS module for decoding bzip2 data",

@@ -443,3 +443,3 @@ /*

throw new TypeError('outputsize does not match decoded input');
return bz.outputsize ? bz.output : new Buffer(bz.output);
return bz.outputsize ? bz.output : new Buffer(bz.output, 'ascii');
};

@@ -462,5 +462,5 @@ Bunzip.decodeBlock = function(inputbuffer, pos, outputsize) {

}
return bz.outputsize ? bz.output : new Buffer(bz.output);
return bz.outputsize ? bz.output : new Buffer(bz.output, 'ascii');
}
module.exports = Bunzip;
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