removed console logfs

This commit is contained in:
Jack 2021-08-25 15:51:38 +01:00
parent 1c37cf9245
commit 33d4f19934

View file

@ -624,7 +624,6 @@ export async function init() {
randomWord = randomWord.replace(/ +/g, " ");
randomWord = randomWord.replace(/( *(\r\n|\r|\n) *)/g, "\n ");
randomWord = randomWord.replace(/[\u2060]/g, " ");
console.log(`randomwordLast=${randomWord}`);
if (/ +/.test(randomWord)) {
let randomList = randomWord.split(" ");
let id = 0;
@ -638,7 +637,6 @@ export async function init() {
} else {
words.push(randomWord);
}
console.log(`words=${words.list} i=${i}`);
}
}
} else if (Config.mode == "quote") {