mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
436 B
16 lines
436 B
10 years ago
|
var assert = require('assert');
|
||
|
var common = require('../common.js');
|
||
|
|
||
|
var bench = common.createBenchmark(main, {});
|
||
|
|
||
|
function main(conf) {
|
||
|
for (var s = 'abcd'; s.length < 32 << 20; s += s);
|
||
|
s.match(/./); // Flatten string.
|
||
|
assert.equal(s.length % 4, 0);
|
||
|
var b = Buffer(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);
|
||
|
}
|