mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
3c61b87e59
PR-URL: https://github.com/nodejs/node/pull/19292 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yuta Hiroto <hello@hiroppy.me> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
21 lines
335 B
JavaScript
21 lines
335 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
const assert = require('assert');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [1e9]
|
|
});
|
|
|
|
function main({ n }) {
|
|
var i;
|
|
bench.start();
|
|
for (i = 0; i < n; ++i) {
|
|
if (i % 2 === 0)
|
|
assert(true);
|
|
else
|
|
assert(true, 'foo bar baz');
|
|
}
|
|
bench.end(n);
|
|
}
|