summaryrefslogtreecommitdiff
path: root/benchmark/url/url-searchparams-iteration.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/url/url-searchparams-iteration.js')
-rw-r--r--benchmark/url/url-searchparams-iteration.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/url/url-searchparams-iteration.js b/benchmark/url/url-searchparams-iteration.js
index 89919af725..0f4b71a0a1 100644
--- a/benchmark/url/url-searchparams-iteration.js
+++ b/benchmark/url/url-searchparams-iteration.js
@@ -33,7 +33,7 @@ function iterator(n) {
bench.start();
for (var i = 0; i < n; i += 1) {
- for (var pair of params) {
+ for (const pair of params) {
noDead[0] = pair[0];
noDead[1] = pair[1];
}