/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v20.20.1
benchmark/buffers/buffer-slice.js
24 строки
532 B
Antoine du Hamel
benchmark: add trailing commas in `benchmark/buffers`
04 фев 2023, 21:19
Не верифицирован
04 фев 2023, 21:19
95434fb
Код
Авторство
О чём код?
'use strict'; const common = require('../common.js'); const SlowBuffer = require('buffer').SlowBuffer; const bench = common.createBenchmark(main, { type: ['fast', 'slow', 'subarray'], n: [1e6], }); const buf = Buffer.allocUnsafe(1024); const slowBuf = new SlowBuffer(1024); function main({ n, type }) { const b = type === 'slow' ? slowBuf : buf; const fn = type === 'subarray' ? () => b.subarray(10, 256) : () => b.slice(10, 256); bench.start(); for (let i = 0; i < n; i++) { fn(); } bench.end(n); }