Skip to content

Commit

Permalink
bruh
Browse files Browse the repository at this point in the history
  • Loading branch information
FallBackITA27 committed Apr 11, 2024
1 parent a1c0a07 commit 9890cf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mkwpp-parser/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9890cf7

Please sign in to comment.