Let's try mozilla's fixedCharAt function

master
Chloe Fontenot 🏳️‍⚧️ 2023-04-30 19:59:30 +07:00
parent 41611bc18c
commit 9b30795909
1 changed files with 1 additions and 1 deletions

@ -217,7 +217,7 @@ function charIterate(input) {
let temp = input.split(''); let temp = input.split('');
for (let i = 0; i < stringLength; ++i) { for (let i = 0; i < stringLength; ++i) {
let compareString = temp.join(""); let compareString = temp.join("");
if (surrogatePairs.exec(compareString).index == i) { if (surrogatePairs.exec(compareString)[index] == i) {
stringLength--; stringLength--;
console.log("Decreasing stringLength variable to", stringLength); console.log("Decreasing stringLength variable to", stringLength);
} }