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

Function BrotliCompress

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

Source from the content-addressed store, hash-verified

860ObjectSetPrototypeOf(Brotli, Zlib);
861
862function BrotliCompress(opts) {
863 if (!(this instanceof BrotliCompress)) {
864 return deprecateInstantiation(BrotliCompress, 'DEP0184', opts);
865 }
866 Brotli.call(this, opts, BROTLI_ENCODE);
867}
868ObjectSetPrototypeOf(BrotliCompress.prototype, Brotli.prototype);
869ObjectSetPrototypeOf(BrotliCompress, Brotli);
870

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…