Some of the benchmark code can be a little dense. Not *very* hard to read but perhaps harder than it needs to be. These changes (many of them whitespace-only) hopefully improve readability. There are also a few cases of `assert.equal()` that are changed to `assert.strictEqual()`. PR-URL: https://github.com/nodejs/node/pull/9790 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
16 lines
459 B
JavaScript
16 lines
459 B
JavaScript
'use strict';
|
|
const assert = require('assert');
|
|
const common = require('../common.js');
|
|
|
|
const bench = common.createBenchmark(main, {});
|
|
|
|
function main(conf) {
|
|
const s = 'abcd'.repeat(8 << 20);
|
|
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 < 32; i += 1) b.base64Write(s, 0, s.length);
|
|
bench.end(32);
|
|
}
|