fixed mode check in wrapper

This commit is contained in:
Vitaly Puzrin 2014-02-19 11:18:44 +04:00
parent 0d4a1bcd64
commit 5ef6eee173

View file

@ -95,7 +95,7 @@ Deflate.prototype.push = function(data, mode) {
if (this.ended) { return false; }
_mode = (mode === true) ? c.Z_FINISH : (isNaN(mode) ? c.Z_NO_FLUSH : mode);
_mode = (mode === ~~mode) ? mode : ((mode === true) ? c.Z_FINISH : c.Z_NO_FLUSH);
strm.next_in = data;
strm.next_in_index = 0;