Comparing version 0.8.5 to 0.8.6
@@ -22,2 +22,6 @@ var Stream = require('stream'); | ||
found = true; | ||
outStream.emit('entry',entry); | ||
entry.on('error',function(e) { | ||
outStream.emit('error',e); | ||
}); | ||
entry.pipe(outStream) | ||
@@ -34,2 +38,5 @@ .on('error',function(err) { | ||
inStream.pipe(Parse(opts)) | ||
.on('error',function(err) { | ||
outStream.emit('error',err); | ||
}) | ||
.pipe(transform) | ||
@@ -36,0 +43,0 @@ .on('finish',function() { |
{ | ||
"name": "unzipper", | ||
"version": "0.8.5", | ||
"version": "0.8.6", | ||
"description": "Unzip cross-platform streaming API ", | ||
@@ -5,0 +5,0 @@ "author": "Evan Oxfeld <eoxfeld@gmail.com>", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
33249
716