From 7fe545c097b1f73ef05667c3d60db5843a32be0c Mon Sep 17 00:00:00 2001 From: Caleb Fontenot Date: Sun, 9 Apr 2023 09:16:00 -0500 Subject: [PATCH] add zero-width space --- commands/drawDesign.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/drawDesign.cjs b/commands/drawDesign.cjs index c3cbd8e..4b06ad7 100644 --- a/commands/drawDesign.cjs +++ b/commands/drawDesign.cjs @@ -220,7 +220,7 @@ function charIterate(input) { } else { charIterateState = 0; } - console.log(charIterateState, input.charAt(charIterate)); + console.log(charIterateState, input.charAt(charIterateState)); return charIterateState; }