summaryrefslogtreecommitdiff
path: root/benchmark/buffers/buffer-indexof-number.js
blob: bd3fe34f4d786097c9b087c7bf8969b306f71d1c (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 fs = require('fs');
const path = require('path');

const bench = common.createBenchmark(main, {
  value: ['@'.charCodeAt(0)],
  n: [1e6]
});

function main({ n, value }) {
  const aliceBuffer = fs.readFileSync(
    path.resolve(__dirname, '../fixtures/alice.html')
  );

  let count = 0;
  bench.start();
  for (var i = 0; i < n; i++) {
    count += aliceBuffer.indexOf(value, 0, undefined);
  }
  bench.end(n);
  return count;
}