mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
d0ed431041
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>
18 lines
243 B
JavaScript
18 lines
243 B
JavaScript
'use strict';
|
|
const common = require('../common.js');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [5e6],
|
|
});
|
|
|
|
function main({ n }) {
|
|
|
|
bench.start();
|
|
|
|
for (let i = 0; i < n; i++) {
|
|
setTimeout(() => {}, 1);
|
|
}
|
|
|
|
bench.end(n);
|
|
}
|