Home
last modified time | relevance | path

Searched refs:gunz (Results 1 – 2 of 2) sorted by relevance

/third_party/node/test/parallel/
Dtest-zlib-write-after-flush.js32 const gunz = createDecompress(); constant
34 gzip.pipe(gunz);
38 gunz.setEncoding('utf8');
39 gunz.on('data', (c) => output += c);
40 gunz.on('end', common.mustCall(() => {
48 gunz.read(0);
Dtest-zlib-random-byte-pipes.js151 const gunz = createDecompress(); constant
153 inp.pipe(gzip).pipe(gunz).pipe(out);