This reverts commit 0579e0ec93
PR-URL: https://github.com/nodejs/node/pull/58211
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
24 lines
532 B
JavaScript
24 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);
|
|
}
|