interface DecompressionStream
extends GenericTransformStream
An API for decompressing a stream of data.
Examples Jump to heading
Jump to heading
Example 1
Example 1
const input = await Deno.open("./file.txt.gz");
const output = await Deno.create("./file.txt");
await input.readable
.pipeThrough(new DecompressionStream("gzip"))
.pipeTo(output.writable);
Properties Jump to heading
readonly
Jump to headingreadable: ReadableStream<Uint8Array>