benchmark: var to const

PR-URL: https://github.com/nodejs/node/pull/13757
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
This commit is contained in:
Ruben Bridgewater 2017-09-13 22:48:53 -03:00
parent b1c8f15c5f
commit e167ab71fb
No known key found for this signature in database
GPG key ID: F07496B3EB3C1762
120 changed files with 682 additions and 682 deletions

View file

@ -1,19 +1,19 @@
'use strict';
var common = require('../common.js');
var ClientRequest = require('http').ClientRequest;
const common = require('../common.js');
const ClientRequest = require('http').ClientRequest;
var bench = common.createBenchmark(main, {
const bench = common.createBenchmark(main, {
len: [1, 8, 16, 32, 64, 128],
n: [1e6]
});
function main(conf) {
var len = +conf.len;
var n = +conf.n;
const len = +conf.len;
const n = +conf.n;
var path = '/'.repeat(len);
var opts = { path: path, createConnection: function() {} };
const path = '/'.repeat(len);
const opts = { path: path, createConnection: function() {} };
bench.start();
for (var i = 0; i < n; i++) {