mirror of https://github.com/nodejs/node.git
23 lines
440 B
JavaScript
23 lines
440 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
const tls = require('tls');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [1, 50000],
|
|
});
|
|
|
|
function main({ n }) {
|
|
const input = ['ABC', 'XYZ123', 'FOO'];
|
|
let m = {};
|
|
// First call dominates results
|
|
if (n > 1) {
|
|
tls.convertALPNProtocols(input, m);
|
|
m = {};
|
|
}
|
|
bench.start();
|
|
for (let i = 0; i < n; i++)
|
|
tls.convertALPNProtocols(input, m);
|
|
bench.end(n);
|
|
}
|