%PDF- %PDF-
Direktori : /home/vacivi36/vittasync.vacivitta.com.br/vittasync/node/benchmark/tls/ |
Current File : /home/vacivi36/vittasync.vacivitta.com.br/vittasync/node/benchmark/tls/convertprotocols.js |
'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); }