Socket
Socket
Sign inDemoInstall

yauzl

Package Overview
Dependencies
Maintainers
2
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yauzl - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

7

index.js

@@ -323,3 +323,8 @@ var fs = require("fs");

} else {
return cp437_to_utf8.convert(buffer.slice(start, end)).toString("utf8");
var slice = buffer.slice(start, end);
if (slice.length === 0) {
return "";
} else {
return cp437_to_utf8.convert(slice).toString("utf8");
}
}

@@ -326,0 +331,0 @@ }

2

package.json
{
"name": "yauzl",
"version": "2.0.0",
"version": "2.0.1",
"description": "yet another unzip library for node",

@@ -5,0 +5,0 @@ "main": "index.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