First working build™️
This commit is contained in:
parent
b9c31fdac5
commit
efa6dfcf7e
5
main.ts
5
main.ts
@ -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 "";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user