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

Function decompressDeflate

lib/internal/streams/iter/transform.js:717–723  ·  view source on GitHub ↗
(options = kNullPrototype)

Source from the content-addressed store, hash-verified

715}
716
717function decompressDeflate(options = kNullPrototype) {
718 validateObject(options, 'options');
719 return makeZlibTransform(
720 (cb, onErr) => createZlibHandle(INFLATE, options, cb, onErr),
721 Z_NO_FLUSH, Z_FINISH,
722 );
723}
724
725function decompressBrotli(options = kNullPrototype) {
726 validateObject(options, 'options');

Callers 8

testCorruptDeflateDataFunction · 0.85
testDeflateRoundTripFunction · 0.85
testDeflateLargeDataFunction · 0.85
testEmptyInputDeflateFunction · 0.85
testChainedGzipDeflateFunction · 0.85

Calls 2

makeZlibTransformFunction · 0.85
createZlibHandleFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…