Lines Matching refs:Unzip
624 // what was consumed; that is, everything except Gunzip/Unzip.
798 function Unzip(opts) {
799 if (!(this instanceof Unzip))
800 return new Unzip(opts);
803 ObjectSetPrototypeOf(Unzip.prototype, Zlib.prototype);
804 ObjectSetPrototypeOf(Unzip, Zlib);
917 Unzip,
929 unzip: createConvenienceMethod(Unzip, false),
930 unzipSync: createConvenienceMethod(Unzip, true),
950 createUnzip: createProperty(Unzip),