Skip to content
Snippets Groups Projects
Commit f8e3a8ed authored by Ujjwal Sharma's avatar Ujjwal Sharma Committed by Rick Waldron
Browse files

Add let before variable declaration

parent ec35b59e
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,6 @@ const proxyLocales = new Proxy(locales, handlers);
const nf = new Intl.NumberFormat(proxyLocales);
assert.sameValue(actualLookups.length, locales.length);
for (index in actualLookups) {
for (let index in actualLookups) {
assert.sameValue(actualLookups[index], String(index));
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment