mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
662 B
32 lines
662 B
'use strict';
|
|
const common = require('../common.js');
|
|
const zlib = require('zlib');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
type: [
|
|
'Deflate', 'DeflateRaw', 'Inflate', 'InflateRaw', 'Gzip', 'Gunzip', 'Unzip'
|
|
],
|
|
options: ['true', 'false'],
|
|
n: [5e5]
|
|
});
|
|
|
|
function main(conf) {
|
|
const n = +conf.n;
|
|
const fn = zlib['create' + conf.type];
|
|
if (typeof fn !== 'function')
|
|
throw new Error('Invalid zlib type');
|
|
var i = 0;
|
|
|
|
if (conf.options === 'true') {
|
|
const opts = {};
|
|
bench.start();
|
|
for (; i < n; ++i)
|
|
fn(opts);
|
|
bench.end(n);
|
|
} else {
|
|
bench.start();
|
|
for (; i < n; ++i)
|
|
fn();
|
|
bench.end(n);
|
|
}
|
|
}
|
|
|