%PDF- %PDF-
Direktori : /home2/vacivi36/vittasync.vacivitta.com.br/vittasync/node/benchmark/perf_hooks/ |
Current File : //home2/vacivi36/vittasync.vacivitta.com.br/vittasync/node/benchmark/perf_hooks/histogram-create.js |
'use strict'; const assert = require('assert'); const common = require('../common.js'); const { createHistogram } = require('perf_hooks'); const bench = common.createBenchmark(main, { n: [1e5], }); let _histogram; function main({ n }) { bench.start(); for (let i = 0; i < n; i++) _histogram = createHistogram(); bench.end(n); // Avoid V8 deadcode (elimination) assert.ok(_histogram); }