mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
dcfda1007b
In the hopes of soon having the benchmark code linted, this change groups all the likely non-controversial lint-compliance changes such as indentation, semi-colon usage, and single-vs.-double quotation marks. Other lint rules may have subtle performance implications in the V8 currently shipped with Node.js. Those changes will require more careful review and will be in a separate change. PR-URL: https://github.com/nodejs/node/pull/5429 Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Brian White <mscdex@mscdex.net>
17 lines
308 B
JavaScript
17 lines
308 B
JavaScript
'use strict';
|
|
var util = require('util');
|
|
|
|
var common = require('../common.js');
|
|
|
|
var bench = common.createBenchmark(main, {n: [5e6]});
|
|
|
|
function main(conf) {
|
|
var n = conf.n | 0;
|
|
|
|
bench.start();
|
|
for (var i = 0; i < n; i += 1) {
|
|
util.inspect({a: 'a', b: 'b', c: 'c', d: 'd'});
|
|
}
|
|
bench.end(n);
|
|
}
|