From 5c84d7402ea2261719b98b4d0679e298396a97bd Mon Sep 17 00:00:00 2001 From: George Mandis Date: Sun, 14 Nov 2021 19:51:42 -0800 Subject: [PATCH] Added missing const. How did I not ever catch this? --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index b3cebbb..7f8931d 100644 --- a/src/index.js +++ b/src/index.js @@ -93,7 +93,7 @@ const getTimestamp = (obj) => { const contentFromAllFeeds = {}; const errors = []; - for (group in feeds) { + for (const group in feeds) { contentFromAllFeeds[group] = []; for (let index = 0; index < feeds[group].length; index++) {