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>
18 lines
296 B
JavaScript
18 lines
296 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [1e4],
|
|
len: [0, 256, 4 * 1024],
|
|
});
|
|
|
|
function main({ n, len }) {
|
|
const buf = Buffer.allocUnsafe(len);
|
|
|
|
bench.start();
|
|
for (let i = 0; i < n; ++i)
|
|
buf.toJSON();
|
|
bench.end(n);
|
|
}
|