Remove console.log

This commit is contained in:
Michael Howell 2024-11-13 14:55:06 -07:00 committed by GitHub
parent 86da4be47f
commit 1d133993ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1160,9 +1160,6 @@ class NameTrie {
for (const entry of tailTable.get(tail)) {
entry.searchSubstringPrefix(name, 3, results);
}
} else {
console.log(tailTable);
console.log(tail);
}
}
return [...results];