Comparing version 1.0.2 to 1.0.3
@@ -59,5 +59,10 @@ var tar = require('tar'); | ||
this._bubble(stream1, stream2); | ||
this._bubble(stream2, stream1); | ||
stream1.pipe(stream2); | ||
// Monkey patch stream1's .on() so stream2 actually handles events | ||
stream1.on = function(event, listener) { | ||
stream2.on(event, listener); | ||
}; | ||
return stream1; | ||
@@ -64,0 +69,0 @@ }; |
{ | ||
"name": "tar.gz", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "Pure javascript tarball tools for Node.js", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
12916
158