mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
95434fbf28
PR-URL: https://github.com/nodejs/node/pull/46473 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
25 lines
532 B
JavaScript
25 lines
532 B
JavaScript
'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);
|
|
}
|