mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
18 lines
388 B
JavaScript
18 lines
388 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const common = require('../common.js');
|
||
|
const { randomUUID } = require('crypto');
|
||
|
|
||
|
const bench = common.createBenchmark(main, {
|
||
|
n: [1e7],
|
||
|
disableEntropyCache: [0, 1],
|
||
|
});
|
||
|
|
||
|
function main({ n, disableEntropyCache }) {
|
||
|
disableEntropyCache = !!disableEntropyCache;
|
||
|
bench.start();
|
||
|
for (let i = 0; i < n; ++i)
|
||
|
randomUUID({ disableEntropyCache });
|
||
|
bench.end(n);
|
||
|
}
|