node/benchmark/os/cpus.js
Alex Ramirez d0ed431041
benchmark: swap var for let in benchmarks
In benchmark directory this changes for loops
using var to let when it applies for consistency

PR-URL: https://github.com/nodejs/node/pull/28958
Reviewed-By: Anna Henningsen <anna@addaleax.net>
2020-02-13 21:38:00 +01:00

16 lines
250 B
JavaScript

'use strict';
const common = require('../common.js');
const cpus = require('os').cpus;
const bench = common.createBenchmark(main, {
n: [3e4]
});
function main({ n }) {
bench.start();
for (let i = 0; i < n; ++i)
cpus();
bench.end(n);
}