mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 23:36:56 +00:00

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>
16 lines
250 B
JavaScript
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);
|
|
}
|