1'use strict'; 2 3const common = require('../common'); 4const zlib = require('zlib'); 5 6const ts = zlib.createGzip(); 7const buf = Buffer.alloc(1024 * 1024 * 20); 8 9ts.on('data', common.mustCall(() => ts.close())); 10ts.end(buf); 11