Remove console.log

This commit is contained in:
pietervdvn 2022-08-24 02:05:56 +02:00
parent 0e03fb5e7e
commit 1fbe033456

View file

@ -343,7 +343,7 @@ Another example is to search for species and trees:
const prefixesUnrwapped: string[] = prefixes[lg] ?? prefixes
const postfixesUnwrapped: string[] = postfixes[lg] ?? postfixes
let clipped = searchFor;
console.log("Pref", prefixesUnrwapped," post", postfixesUnwrapped)
for (const postfix of postfixesUnwrapped) {
if (searchFor.endsWith(postfix)) {
clipped = searchFor.substring(0, searchFor.length - postfix.length)