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

Function decompressDeflateSync

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

Source from the content-addressed store, hash-verified

787}
788
789function decompressDeflateSync(options = kNullPrototype) {
790 validateObject(options, 'options');
791 return makeZlibTransformSync(
792 (cb, onErr) => createZlibHandle(INFLATE, options, cb, onErr),
793 Z_NO_FLUSH, Z_FINISH,
794 );
795}
796
797function decompressBrotliSync(options = kNullPrototype) {
798 validateObject(options, 'options');

Callers 2

testDeflateRoundTripFunction · 0.85
testDeflateLargeDataFunction · 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…