0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 15:06:33 +01:00
nodejs/benchmark/streams/readable-bigunevenread.js

24 lines
429 B
JavaScript
Raw Normal View History

'use strict';
const common = require('../common');
const Readable = require('stream').Readable;
const bench = common.createBenchmark(main, {
n: [100e1]
});
function main({ n }) {
const b = Buffer.alloc(32);
const s = new Readable();
function noop() {}
s._read = noop;
bench.start();
for (var k = 0; k < n; ++k) {
for (var i = 0; i < 1e4; ++i)
s.push(b);
while (s.read(106));
}
bench.end(n);
}