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

Function decompressZstd

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

Source from the content-addressed store, hash-verified

731}
732
733function decompressZstd(options = kNullPrototype) {
734 validateObject(options, 'options');
735 return makeZlibTransform(
736 (cb, onErr) => createZstdHandle(ZSTD_DECOMPRESS, options, cb, onErr),
737 ZSTD_e_continue, ZSTD_e_end,
738 );
739}
740
741// ---------------------------------------------------------------------------
742// Sync compression factories

Callers 8

testZstdWithParamsFunction · 0.85
testCorruptZstdDataFunction · 0.85
testZstdRoundTripFunction · 0.85
testZstdLargeDataFunction · 0.85
testBinaryRoundTripZstdFunction · 0.85
testEmptyInputZstdFunction · 0.85
testZlibZstdToNewStreamsFunction · 0.85

Calls 2

makeZlibTransformFunction · 0.85
createZstdHandleFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…