mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

An upcoming custom lint rule will provide slightly more strict enforcement of argument alignment for multiline function calls. Adjust existing code to conform. PR-URL: https://github.com/nodejs/node/pull/8642 Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
29 lines
693 B
JavaScript
29 lines
693 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const zlib = require('zlib');
|
|
|
|
const data = Buffer.concat([
|
|
zlib.gzipSync('abc'),
|
|
zlib.gzipSync('def')
|
|
]);
|
|
|
|
const resultBuffers = [];
|
|
|
|
const unzip = zlib.createUnzip()
|
|
.on('error', (err) => {
|
|
assert.ifError(err);
|
|
})
|
|
.on('data', (data) => resultBuffers.push(data))
|
|
.on('finish', common.mustCall(() => {
|
|
assert.deepStrictEqual(Buffer.concat(resultBuffers).toString(), 'abcdef',
|
|
'result should match original string');
|
|
}));
|
|
|
|
for (let i = 0; i < data.length; i++) {
|
|
// Write each single byte individually.
|
|
unzip.write(Buffer.from([data[i]]));
|
|
}
|
|
|
|
unzip.end();
|