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.
 
 
 
 
 
 

27 lines
499 B

'use strict';
const common = require('../common.js');
const bench = common.createBenchmark(main, {
arg: ['true', 'false'],
len: [0, 1, 64, 1024],
n: [1e7]
});
function main(conf) {
const arg = conf.arg === 'true';
const len = conf.len | 0;
const n = conf.n | 0;
const buf = Buffer.alloc(len, 42);
var i;
bench.start();
if (arg) {
for (i = 0; i < n; i += 1)
buf.toString('utf8');
} else {
for (i = 0; i < n; i += 1)
buf.toString();
}
bench.end(n);
}