summaryrefslogtreecommitdiff
path: root/benchmark/timers/timers-timeout-pooled.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/timers/timers-timeout-pooled.js')
-rw-r--r--benchmark/timers/timers-timeout-pooled.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmark/timers/timers-timeout-pooled.js b/benchmark/timers/timers-timeout-pooled.js
index feaec23237..2e8753a0c3 100644
--- a/benchmark/timers/timers-timeout-pooled.js
+++ b/benchmark/timers/timers-timeout-pooled.js
@@ -1,12 +1,12 @@
'use strict';
-var common = require('../common.js');
+const common = require('../common.js');
-var bench = common.createBenchmark(main, {
+const bench = common.createBenchmark(main, {
thousands: [500],
});
function main(conf) {
- var iterations = +conf.thousands * 1e3;
+ const iterations = +conf.thousands * 1e3;
var count = 0;
for (var i = 0; i < iterations; i++) {