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.
26 lines
482 B
26 lines
482 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;
|
|
const len = conf.len | 0;
|
|
const n = conf.n | 0;
|
|
const buf = Buffer(len).fill(42);
|
|
|
|
bench.start();
|
|
if (arg) {
|
|
for (var i = 0; i < n; i += 1)
|
|
buf.toString('utf8');
|
|
} else {
|
|
for (var i = 0; i < n; i += 1)
|
|
buf.toString();
|
|
}
|
|
bench.end(n);
|
|
}
|
|
|