mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 10:50:59 +01:00
fixed mode check in wrapper
This commit is contained in:
parent
0d4a1bcd64
commit
5ef6eee173
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue