Skip to main content

variable CompressionStream

An API for compressing a stream of data.

Examples #

#
await Deno.stdin.readable .pipeThrough(new CompressionStream("gzip")) .pipeTo(Deno.stdout.writable); 

Properties #

Did you find what you needed?