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

Function decompressGzip

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

Source from the content-addressed store, hash-verified

707// ---------------------------------------------------------------------------
708
709function decompressGzip(options = kNullPrototype) {
710 validateObject(options, 'options');
711 return makeZlibTransform(
712 (cb, onErr) => createZlibHandle(GUNZIP, options, cb, onErr),
713 Z_NO_FLUSH, Z_FINISH,
714 );
715}
716
717function decompressDeflate(options = kNullPrototype) {
718 validateObject(options, 'options');

Callers 15

runFunction · 0.85
testPipeToWithTransformFunction · 0.85
testGzipWithStrategyFunction · 0.85
testGzipWithChunkSizeFunction · 0.85
testWithCompressionFunction · 0.85
testCorruptGzipDataFunction · 0.85
testCompressRoundTripFunction · 0.85
testGzipRoundTripFunction · 0.85
testGzipLargeDataFunction · 0.85
testBinaryRoundTripGzipFunction · 0.85
testEmptyInputGzipFunction · 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…