/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
benchmark/streams/readable-unevenread.js
23 строки
427 B
Antoine du Hamel
benchmark: add trailing commas
29 янв 2023, 21:13
Не верифицирован
29 янв 2023, 21:13
ca5f322
Код
Авторство
О чём код?
'use strict'; const common = require('../common'); const Readable = require('stream').Readable; const bench = common.createBenchmark(main, { n: [1e3], }); function main({ n }) { const b = Buffer.alloc(32); const s = new Readable(); function noop() {} s._read = noop; bench.start(); for (let k = 0; k < n; ++k) { for (let i = 0; i < 1e4; ++i) s.push(b); while (s.read(12)); } bench.end(n); }