summaryrefslogtreecommitdiff
path: root/benchmark/util/inspect-proxy.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/util/inspect-proxy.js')
-rw-r--r--benchmark/util/inspect-proxy.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/util/inspect-proxy.js b/benchmark/util/inspect-proxy.js
index 3c82d50ac3..dde86941ff 100644
--- a/benchmark/util/inspect-proxy.js
+++ b/benchmark/util/inspect-proxy.js
@@ -9,7 +9,7 @@ function main({ n }) {
const proxyA = new Proxy({}, { get: () => {} });
const proxyB = new Proxy(() => {}, {});
bench.start();
- for (var i = 0; i < n; i += 1)
+ for (let i = 0; i < n; i += 1)
util.inspect({ a: proxyA, b: proxyB }, { showProxy: true });
bench.end(n);
}