master
Chloe Fontenot 🏳️‍⚧️ 2023-04-08 23:19:43 +07:00
parent 5632fac3c4
commit c807f7c2db
1 changed files with 1 additions and 1 deletions

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