mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 15:06:33 +01:00
592454e703
PR-URL: https://github.com/nodejs/node/pull/18250 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
23 lines
396 B
JavaScript
23 lines
396 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const Writable = require('stream').Writable;
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [2e6]
|
|
});
|
|
|
|
function main({ n }) {
|
|
const b = Buffer.allocUnsafe(1024);
|
|
const s = new Writable();
|
|
s._write = function(chunk, encoding, cb) {
|
|
cb();
|
|
};
|
|
|
|
bench.start();
|
|
for (var k = 0; k < n; ++k) {
|
|
s.write(b);
|
|
}
|
|
bench.end(n);
|
|
}
|