From 9890cf77cc7852bddfbaf739961ffb76ea1e3116 Mon Sep 17 00:00:00 2001 From: FallBackITA27 Date: Thu, 11 Apr 2024 14:57:47 +0200 Subject: [PATCH] bruh --- mkwpp-parser/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkwpp-parser/script.js b/mkwpp-parser/script.js index 956d1d1..86d277a 100644 --- a/mkwpp-parser/script.js +++ b/mkwpp-parser/script.js @@ -72,7 +72,7 @@ document.getElementById("readInput").addEventListener("click", async function() continue; } let _break = false; - for (let abbr in constants.months.keys()) if (kw.startsWith(abbr)) { + for (let abbr of Object.keys(constants.months)) if (kw.startsWith(abbr)) { month = constants.months[abbr]; _break = true; break;