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

const bench = common.createBenchmark(main, {
  n: [32],
});

function main(conf) {
  const n = +conf.n;
  const s = 'abcd'.repeat(8 << 20);
  // eslint-disable-next-line no-unescaped-regexp-dot
  s.match(/./);  // Flatten string.
  assert.strictEqual(s.length % 4, 0);
  const b = Buffer.allocUnsafe(s.length / 4 * 3);
  b.write(s, 0, s.length, 'base64');
  bench.start();
  for (var i = 0; i < n; i += 1) b.base64Write(s, 0, s.length);
  bench.end(n);
}