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

Function DeflateRaw

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

Source from the content-addressed store, hash-verified

756ObjectSetPrototypeOf(Gunzip, Zlib);
757
758function DeflateRaw(opts) {
759 if (opts && opts.windowBits === 8) opts.windowBits = 9;
760 if (!(this instanceof DeflateRaw)) {
761 return deprecateInstantiation(DeflateRaw, 'DEP0184', opts);
762 }
763 Zlib.call(this, opts, DEFLATERAW);
764}
765ObjectSetPrototypeOf(DeflateRaw.prototype, Zlib.prototype);
766ObjectSetPrototypeOf(DeflateRaw, Zlib);
767

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…