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

Function Deflate

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

Source from the content-addressed store, hash-verified

720// generic zlib
721// minimal 2-byte header
722function Deflate(opts) {
723 if (!(this instanceof Deflate)) {
724 return deprecateInstantiation(Deflate, 'DEP0184', opts);
725 }
726 Zlib.call(this, opts, DEFLATE);
727}
728ObjectSetPrototypeOf(Deflate.prototype, Zlib.prototype);
729ObjectSetPrototypeOf(Deflate, Zlib);
730

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…