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

Function InflateRaw

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

Source from the content-addressed store, hash-verified

766ObjectSetPrototypeOf(DeflateRaw, Zlib);
767
768function InflateRaw(opts) {
769 if (!(this instanceof InflateRaw)) {
770 return deprecateInstantiation(InflateRaw, 'DEP0184', opts);
771 }
772 Zlib.call(this, opts, INFLATERAW);
773}
774ObjectSetPrototypeOf(InflateRaw.prototype, Zlib.prototype);
775ObjectSetPrototypeOf(InflateRaw, Zlib);
776

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…