First working build™️

This commit is contained in:
Chloe Fontenot 🏳️‍⚧️ 2023-03-31 12:38:39 -05:00
parent b63f4f75ac
commit 755ab8598f

View File

@ -80,7 +80,7 @@ function arrayRotate(arr, reverse, amount) {
function matchAbbr(abbrTarget) {
console.log("Looking for: " + abbrTarget);
for (var abbr in abbreviationKey.target_phrases) {
if (abbreviationKey.target_phrases[abbr].match(abbrTarget)) {
if (abbreviationKey.target_phrases[abbr].test(abbrTarget)) {
return abbr;
} else {
return "";