diff --git a/main.ts b/main.ts index eb50d9b..1b90c73 100644 --- a/main.ts +++ b/main.ts @@ -79,11 +79,14 @@ function arrayRotate(arr, reverse, amount) { function matchAbbr(abbrTarget) { console.log("Looking for: " + abbrTarget); - console.log(typeof(abbrTarget)); for (var abbr in abbreviationKey.target_phrases) { if (abbreviationKey.target_phrases[abbr] == abbrTarget) { + console.log("abbrTarget:" + typeof(abbrTarget)); + console.log("abbr: " + typeof(abbr)); return abbr; } else { + console.log("abbrTarget:" + typeof(abbrTarget)); + console.log("abbr: " + typeof(abbr)); return ""; } }