node/benchmark/streams/pipe.js
Antoine du Hamel ca5f322d32
benchmark: add trailing commas
PR-URL: https://github.com/nodejs/node/pull/46370
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: James M Snell <jasnell@gmail.com>
2023-01-29 19:13:35 +01:00

25 lines
449 B
JavaScript

'use strict';
const common = require('../common');
const { Readable, Writable } = require('stream');
const bench = common.createBenchmark(main, {
n: [5e6],
});
function main({ n }) {
const b = Buffer.alloc(1024);
const r = new Readable();
const w = new Writable();
let i = 0;
r._read = () => r.push(i++ === n ? null : b);
w._write = (data, enc, cb) => cb();
bench.start();
r.pipe(w);
w.on('finish', () => bench.end(n));
}