mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
3e1b1dd4a9
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
15 lines
385 B
JavaScript
15 lines
385 B
JavaScript
var common = require('../common.js');
|
|
|
|
var bench = common.createBenchmark(main, {});
|
|
|
|
function main(conf) {
|
|
var N = 64 * 1024 * 1024;
|
|
var b = Buffer(N);
|
|
var s = '';
|
|
for (var i = 0; i < 256; ++i) s += String.fromCharCode(i);
|
|
for (var i = 0; i < N; i += 256) b.write(s, i, 256, 'ascii');
|
|
bench.start();
|
|
for (var i = 0; i < 32; ++i) b.toString('base64');
|
|
bench.end(64);
|
|
}
|