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

Function Inflate

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

Source from the content-addressed store, hash-verified

729ObjectSetPrototypeOf(Deflate, Zlib);
730
731function Inflate(opts) {
732 if (!(this instanceof Inflate)) {
733 return deprecateInstantiation(Inflate, 'DEP0184', opts);
734 }
735 Zlib.call(this, opts, INFLATE);
736}
737ObjectSetPrototypeOf(Inflate.prototype, Zlib.prototype);
738ObjectSetPrototypeOf(Inflate, Zlib);
739

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…