summaryrefslogtreecommitdiff
path: root/benchmark/buffers/buffer_zero.js
blob: e624bbbcd43283433e3f7250572bf78e0141a2ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'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(conf) {
  var n = +conf.n;
  bench.start();

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

  bench.end(n);
}