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

Function decompressZstdSync

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

Source from the content-addressed store, hash-verified

803}
804
805function decompressZstdSync(options = kNullPrototype) {
806 validateObject(options, 'options');
807 return makeZlibTransformSync(
808 (cb, onErr) => createZstdHandle(ZSTD_DECOMPRESS, options, cb, onErr),
809 ZSTD_e_continue, ZSTD_e_end,
810 );
811}
812
813module.exports = {
814 compressBrotli,

Callers 2

testZstdRoundTripFunction · 0.85
testZstdLargeDataFunction · 0.85

Calls 2

makeZlibTransformSyncFunction · 0.85
createZstdHandleFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…