mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 15:30:56 +01:00
8be3766353
In benchmark buffers directory this changes for loops using var to let when it applies for consistency PR-URL: https://github.com/nodejs/node/pull/28867 Reviewed-By: Jan Krems <jan.krems@gmail.com> Reviewed-By: Khaidi Chu <i@2333.moe> Reviewed-By: Rich Trott <rtrott@gmail.com>
18 lines
295 B
JavaScript
18 lines
295 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [1e4],
|
|
len: [0, 256, 4 * 1024]
|
|
});
|
|
|
|
function main({ n, len }) {
|
|
const buf = Buffer.allocUnsafe(len);
|
|
|
|
bench.start();
|
|
for (let i = 0; i < n; ++i)
|
|
buf.toJSON();
|
|
bench.end(n);
|
|
}
|