Comparing version 0.0.2 to 0.0.3
{ | ||
"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; |
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
2085629