First working build™️

This commit is contained in:
Chloe Fontenot 🏳️‍⚧️ 2023-03-31 12:48:43 -05:00
parent b9c31fdac5
commit efa6dfcf7e

View File

@ -79,11 +79,14 @@ function arrayRotate(arr, reverse, amount) {
function matchAbbr(abbrTarget) { function matchAbbr(abbrTarget) {
console.log("Looking for: " + abbrTarget); console.log("Looking for: " + abbrTarget);
console.log(typeof(abbrTarget));
for (var abbr in abbreviationKey.target_phrases) { for (var abbr in abbreviationKey.target_phrases) {
if (abbreviationKey.target_phrases[abbr] == abbrTarget) { if (abbreviationKey.target_phrases[abbr] == abbrTarget) {
console.log("abbrTarget:" + typeof(abbrTarget));
console.log("abbr: " + typeof(abbr));
return abbr; return abbr;
} else { } else {
console.log("abbrTarget:" + typeof(abbrTarget));
console.log("abbr: " + typeof(abbr));
return ""; return "";
} }
} }