mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
d349ba29ef
In benchmark util directory this changes for loops using var to let when it applies for consistency PR-URL: https://github.com/nodejs/node/pull/28867 Reviewed-By: Jan Krems <jan.krems@gmail.com> Reviewed-By: Khaidi Chu <i@2333.moe> Reviewed-By: Rich Trott <rtrott@gmail.com>
16 lines
394 B
JavaScript
16 lines
394 B
JavaScript
'use strict';
|
|
|
|
const util = require('util');
|
|
const common = require('../common.js');
|
|
|
|
const bench = common.createBenchmark(main, { n: [2e4] });
|
|
|
|
function main({ n }) {
|
|
const proxyA = new Proxy({}, { get: () => {} });
|
|
const proxyB = new Proxy(() => {}, {});
|
|
bench.start();
|
|
for (let i = 0; i < n; i += 1)
|
|
util.inspect({ a: proxyA, b: proxyB }, { showProxy: true });
|
|
bench.end(n);
|
|
}
|