mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
83cc1e2c8b
PR-URL: https://github.com/nodejs/node/pull/46438 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com>
24 lines
510 B
JavaScript
24 lines
510 B
JavaScript
'use strict';
|
|
|
|
const util = require('util');
|
|
const common = require('../common.js');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [1e5],
|
|
showProxy: [0, 1],
|
|
isProxy: [0, 1],
|
|
});
|
|
|
|
function main({ n, showProxy, isProxy }) {
|
|
let proxyA = {};
|
|
let proxyB = () => {};
|
|
if (isProxy) {
|
|
proxyA = new Proxy(proxyA, { get: () => {} });
|
|
proxyB = new Proxy(proxyB, {});
|
|
}
|
|
bench.start();
|
|
for (let i = 0; i < n; i += 1)
|
|
util.inspect({ a: proxyA, b: proxyB }, { showProxy });
|
|
bench.end(n);
|
|
}
|