Lines Matching refs:Gunzip
624 // what was consumed; that is, everything except Gunzip/Unzip.
773 function Gunzip(opts) {
774 if (!(this instanceof Gunzip))
775 return new Gunzip(opts);
778 ObjectSetPrototypeOf(Gunzip.prototype, Zlib.prototype);
779 ObjectSetPrototypeOf(Gunzip, Zlib);
914 Gunzip,
933 gunzip: createConvenienceMethod(Gunzip, false),
934 gunzipSync: createConvenienceMethod(Gunzip, true),
949 createGunzip: createProperty(Gunzip),