summaryrefslogtreecommitdiff
path: root/benchmark/buffers/buffer-slice.js
blob: 82c960d56017cf5f502bb235b93d994592c5ee29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'use strict';
const common = require('../common.js');
const SlowBuffer = require('buffer').SlowBuffer;

const bench = common.createBenchmark(main, {
  type: ['fast', 'slow'],
  n: [1e6]
});

const buf = Buffer.allocUnsafe(1024);
const slowBuf = new SlowBuffer(1024);

function main({ n, type }) {
  const b = type === 'fast' ? buf : slowBuf;
  bench.start();
  for (var i = 0; i < n; i++) {
    b.slice(10, 256);
  }
  bench.end(n);
}