Allow create Deflate/Inflate instances without new

This commit is contained in:
Vitaly Puzrin 2016-02-17 10:26:37 +03:00
parent 500bc5d042
commit 99a2e4efdc
2 changed files with 2 additions and 0 deletions

View file

@ -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,

View file

@ -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,