MCPcopy Index your code
hub / github.com/nodejs/node / Gunzip

Function Gunzip

lib/zlib.js:749–754  ·  view source on GitHub ↗
(opts)

Source from the content-addressed store, hash-verified

747ObjectSetPrototypeOf(Gzip, Zlib);
748
749function Gunzip(opts) {
750 if (!(this instanceof Gunzip)) {
751 return deprecateInstantiation(Gunzip, 'DEP0184', opts);
752 }
753 Zlib.call(this, opts, GUNZIP);
754}
755ObjectSetPrototypeOf(Gunzip.prototype, Zlib.prototype);
756ObjectSetPrototypeOf(Gunzip, Zlib);
757

Callers

nothing calls this directly

Calls 2

deprecateInstantiationFunction · 0.85
callMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…