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

Function decompressGzipSync

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

Source from the content-addressed store, hash-verified

779// ---------------------------------------------------------------------------
780
781function decompressGzipSync(options = kNullPrototype) {
782 validateObject(options, 'options');
783 return makeZlibTransformSync(
784 (cb, onErr) => createZlibHandle(GUNZIP, options, cb, onErr),
785 Z_NO_FLUSH, Z_FINISH,
786 );
787}
788
789function decompressDeflateSync(options = kNullPrototype) {
790 validateObject(options, 'options');

Callers 9

testGzipRoundTripFunction · 0.85
testGzipLargeDataFunction · 0.85
testGzipBinaryDataFunction · 0.85
testGzipWithOptionsFunction · 0.85
testEmptyInputFunction · 0.85

Calls 2

makeZlibTransformSyncFunction · 0.85
createZlibHandleFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…