Formatting

This commit is contained in:
Daniel Odendahl Jr
2017-03-23 01:35:22 +00:00
parent 72718c7c62
commit 40a4af36c4
109 changed files with 2660 additions and 2505 deletions
+3 -2
View File
@@ -150,7 +150,8 @@ function translator(text) {
let character = text[i];
if (isLetter(character)) {
word += character;
} else {
}
else {
if (word != "") {
let wordTranslate = translateWord(word);
translatedText += wordTranslate;
@@ -168,7 +169,7 @@ function translator(text) {
const temmize = function(text) {
let currentTranslation = translator(text);
let temmify = currentTranslation.split("ing").join("in").split("!").join("!!!!111!11!1!!!1!!!1111!").split("'").join("");
return temmify;
};