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

unzipper

Package Overview
Dependencies
Maintainers
1
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unzipper - npm Package Compare versions

Comparing version 0.8.13 to 0.8.14

2

lib/parse.js

@@ -57,3 +57,3 @@ var util = require('util');

else
self.emit('error', Error('invalid signature: 0x' + signature.toString(16)));
self.emit('error', new Error('invalid signature: 0x' + signature.toString(16)));
});

@@ -60,0 +60,0 @@ };

@@ -66,3 +66,3 @@ var Stream = require('stream');

self.removeListener('chunk',pull);
self.emit('error','FILE_ENDED');
self.emit('error', new Error('FILE_ENDED'));
this.__ended = true;

@@ -106,3 +106,3 @@ return;

if (self.finished)
return reject('FILE_ENDED');
return reject(new Error('FILE_ENDED'));
self.stream(eof,includeEof)

@@ -109,0 +109,0 @@ .on('error',reject)

{
"name": "unzipper",
"version": "0.8.13",
"version": "0.8.14",
"description": "Unzip cross-platform streaming API ",

@@ -5,0 +5,0 @@ "author": "Evan Oxfeld <eoxfeld@gmail.com>",

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