Skip to content

Instantly share code, notes, and snippets.

@Farenheith
Created February 22, 2020 14:42
Show Gist options
  • Save Farenheith/720ce51c500503d56f6dd6d023bfae86 to your computer and use it in GitHub Desktop.
Save Farenheith/720ce51c500503d56f6dd6d023bfae86 to your computer and use it in GitHub Desktop.
import { Readable } from 'stream';
import { createGzip } from 'zlib';
export function streamExample(stream: Readable) {
return stream
.pipe(createGzip());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment