node/benchmark/napi/create_object_with_properties/index.js
Miguel Marcondes Filho a556db4782
node-api: add napi_create_object_with_properties
PR-URL: https://github.com/nodejs/node/pull/59953
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com>
2025-10-30 14:10:44 +00:00

24 lines
564 B
JavaScript

'use strict';
const common = require('../../common.js');
let binding;
try {
binding = require(`./build/${common.buildType}/binding`);
} catch {
console.error(`${__filename}: Binding failed to load`);
process.exit(0);
}
const bench = common.createBenchmark(main, {
n: [1e2, 1e3, 1e4, 1e5, 1e6],
method: ['new', 'old'],
});
function main({ n, method }) {
if (method === 'new') {
binding.createObjectWithPropertiesNew(n, bench, bench.start, bench.end);
} else {
binding.createObjectWithPropertiesOld(n, bench, bench.start, bench.end);
}
}