I'm tired of this...

This commit is contained in:
Chloe Fontenot 🏳️‍⚧️ 2024-08-09 21:02:03 -05:00
parent 0ae0bb90d0
commit 84c819f134

View File

@ -188,7 +188,7 @@ function getMatchingPhrase(inputString, targetCharacter) {
const sMap = { '$': 's', '5': 's', 'š': 's', 'ß': 's', 'ʂ': 's', '𝔲': 'u', '𝔰': 's'}; const sMap = { '$': 's', '5': 's', 'š': 's', 'ß': 's', 'ʂ': 's', '𝔲': 'u', '𝔰': 's'};
return str.split('').map(char => sMap[char] || char).join(''); return str.split('').map(char => sMap[char] || char).join('');
} }
let checkString = message.content.toLowerCase().normalize("NFD"); let checkString = message.content.toLowerCase().normalize("NFKC");
let checkArray = ["ussy", "ussies", "uthy", "yssu", "suuy"]; let checkArray = ["ussy", "ussies", "uthy", "yssu", "suuy"];
function checkLoop(message, content) { function checkLoop(message, content) {
console.log("Checking " + content + "..."); console.log("Checking " + content + "...");