I'm tired of this...

This commit is contained in:
Chloe Fontenot 🏳️‍⚧️ 2024-08-09 20:56:53 -05:00
parent 92b184cf7e
commit 5fa210a6b9

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 = normalize(message.content.toLowerCase()); let checkString = String.prototype.normalize(message.content.toLowerCase());
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 + "...");