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

Function Gzip

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

Source from the content-addressed store, hash-verified

738ObjectSetPrototypeOf(Inflate, Zlib);
739
740function Gzip(opts) {
741 if (!(this instanceof Gzip)) {
742 return deprecateInstantiation(Gzip, 'DEP0184', opts);
743 }
744 Zlib.call(this, opts, GZIP);
745}
746ObjectSetPrototypeOf(Gzip.prototype, Zlib.prototype);
747ObjectSetPrototypeOf(Gzip, Zlib);
748

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…