Browse Source

zlib: allow zero values for level and strategy

v0.11.4-release
Brian White 11 years ago
committed by Ben Noordhuis
parent
commit
c9644fbd7c
  1. 10
      lib/zlib.js

10
lib/zlib.js

@ -326,10 +326,16 @@ function Zlib(opts, mode) {
self.emit('error', error);
};
var level = exports.Z_DEFAULT_COMPRESSION;
if (typeof opts.level === 'number') level = opts.level;
var strategy = exports.Z_DEFAULT_STRATEGY;
if (typeof opts.strategy === 'number') strategy = opts.strategy;
this._binding.init(opts.windowBits || exports.Z_DEFAULT_WINDOWBITS,
opts.level || exports.Z_DEFAULT_COMPRESSION,
level,
opts.memLevel || exports.Z_DEFAULT_MEMLEVEL,
opts.strategy || exports.Z_DEFAULT_STRATEGY,
strategy,
opts.dictionary);
this._buffer = new Buffer(this._chunkSize);

Loading…
Cancel
Save