From f2676294c95695e2de3a7fb88eafae76d6827618 Mon Sep 17 00:00:00 2001 From: Florrie Date: Thu, 31 May 2018 00:00:45 -0300 Subject: Let-const nitpicks --- util/count.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util/count.js') diff --git a/util/count.js b/util/count.js index 7df97a7..24c11b0 100644 --- a/util/count.js +++ b/util/count.js @@ -5,7 +5,7 @@ module.exports = function count(arr) { const map = new Map() - for (let item of arr) { + for (const item of arr) { if (map.has(item)) { map.set(item, map.get(item) + 1) } else { -- cgit 1.3.0-6-gf8a5