mirror of
https://github.com/nodejs/node.git
synced 2025-08-16 06:08:50 +02:00
zlib: allow zero values for level and strategy
This commit is contained in:
parent
0449c3d0cb
commit
c9644fbd7c
1 changed files with 8 additions and 2 deletions
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…
Add table
Add a link
Reference in a new issue