mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 10:50:59 +01:00
Allow create Deflate/Inflate instances without new
This commit is contained in:
parent
500bc5d042
commit
99a2e4efdc
2 changed files with 2 additions and 0 deletions
|
@ -117,6 +117,7 @@ var Z_DEFLATED = 8;
|
|||
* ```
|
||||
**/
|
||||
function Deflate(options) {
|
||||
if (!(this instanceof Deflate)) return new Deflate(options);
|
||||
|
||||
this.options = utils.assign({
|
||||
level: Z_DEFAULT_COMPRESSION,
|
||||
|
|
|
@ -90,6 +90,7 @@ var toString = Object.prototype.toString;
|
|||
* ```
|
||||
**/
|
||||
function Inflate(options) {
|
||||
if (!(this instanceof Inflate)) return new Inflate(options);
|
||||
|
||||
this.options = utils.assign({
|
||||
chunkSize: 16384,
|
||||
|
|
Loading…
Add table
Reference in a new issue