0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

benchmark: (zlib) use destructuring

PR-URL: https://github.com/nodejs/node/pull/18250
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
Ruben Bridgewater 2017-12-30 03:55:00 +01:00
parent 49f5e08188
commit 5dfb93d2fa
No known key found for this signature in database
GPG Key ID: F07496B3EB3C1762
2 changed files with 5 additions and 8 deletions

View File

@ -10,14 +10,13 @@ const bench = common.createBenchmark(main, {
n: [5e5]
});
function main(conf) {
const n = +conf.n;
const fn = zlib[`create${conf.type}`];
function main({ n, type, options }) {
const fn = zlib[`create${type}`];
if (typeof fn !== 'function')
throw new Error('Invalid zlib type');
var i = 0;
if (conf.options === 'true') {
if (options === 'true') {
const opts = {};
bench.start();
for (; i < n; ++i)

View File

@ -8,10 +8,8 @@ const bench = common.createBenchmark(main, {
n: [4e5]
});
function main(conf) {
const n = +conf.n;
const method = conf.method;
const chunk = Buffer.alloc(+conf.inputLen, 'a');
function main({ n, method, inputLen }) {
const chunk = Buffer.alloc(inputLen, 'a');
var i = 0;
switch (method) {