add zero-width space

master
Chloe Fontenot 🏳️‍⚧️ 2023-04-09 09:17:18 +07:00
parent 030c776c3d
commit 87818920ce
1 changed files with 1 additions and 1 deletions

@ -215,7 +215,7 @@ function charIterate(input) {
if (charIterateState == undefined) { if (charIterateState == undefined) {
charIterateState = 0; charIterateState = 0;
} }
if (charIterateState <= input.length) { if (charIterateState < (input.length + 1)) {
charIterateState++; charIterateState++;
} else { } else {
charIterateState = 0; charIterateState = 0;