aboutsummaryrefslogtreecommitdiff
path: root/benchmark/buffers/buffer_zero.js
blob: 06b68c313f1241ff804b1562235cf78031f7c921 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
'use strict';

const common = require('../common.js');

const bench = common.createBenchmark(main, {
  n: [1024],
  type: ['buffer', 'string']
});

const zeroBuffer = Buffer.alloc(0);
const zeroString = '';

function main({ n, type }) {
  bench.start();

  if (type === 'buffer')
    for (let i = 0; i < n * 1024; i++) Buffer.from(zeroBuffer);
  else if (type === 'string')
    for (let i = 0; i < n * 1024; i++) Buffer.from(zeroString);

  bench.end(n);
}