mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
3e1b1dd4a9
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
18 lines
326 B
JavaScript
18 lines
326 B
JavaScript
var common = require('../common.js');
|
|
var assert = require('assert');
|
|
var zlib = require('zlib');
|
|
|
|
var closed = false;
|
|
|
|
zlib.gzip('hello', function(err, out) {
|
|
var unzip = zlib.createGunzip();
|
|
unzip.write(out);
|
|
unzip.close(function() {
|
|
closed = true;
|
|
});
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert(closed);
|
|
});
|