Browse Source

Fixed lint

n1474335 3 years ago
parent
commit
2267569c8d
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/core/operations/ConditionalJump.mjs

+ 1 - 2
src/core/operations/ConditionalJump.mjs

@@ -74,8 +74,7 @@ class ConditionalJump extends Operation {
             if (!invert && strMatch || invert && !strMatch) {
                 state.progress = jmpIndex;
                 state.numJumps++;
-            }
-            else {
+            } else {
                 state.numJumps = 0;
             }
         }