Skip to content

Instantly share code, notes, and snippets.

@mafintosh
Created October 22, 2018 20:30
Show Gist options
  • Save mafintosh/ac1554b033425b7e3379813deea88c75 to your computer and use it in GitHub Desktop.
Save mafintosh/ac1554b033425b7e3379813deea88c75 to your computer and use it in GitHub Desktop.
const zlib = require('zlib');
const { Writable } = require('stream');
const ts = zlib.createGzip();
const buf = Buffer.allocUnsafe(1024 * 1024 * 20);
ts.on('data', common.mustCall(() => ts.close()));
ts.end(buf);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment