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

Function BrotliDecompress

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

Source from the content-addressed store, hash-verified

869ObjectSetPrototypeOf(BrotliCompress, Brotli);
870
871function BrotliDecompress(opts) {
872 if (!(this instanceof BrotliDecompress)) {
873 return deprecateInstantiation(BrotliDecompress, 'DEP0184', opts);
874 }
875 Brotli.call(this, opts, BROTLI_DECODE);
876}
877ObjectSetPrototypeOf(BrotliDecompress.prototype, Brotli.prototype);
878ObjectSetPrototypeOf(BrotliDecompress, Brotli);
879

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…