mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Fix bug
This commit is contained in:
parent
7f11ee063b
commit
55ad4ae4e7
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ const elements = [
|
|||
const begin = code[0];
|
||||
let str = begin;
|
||||
let thisIsNotAString = false;
|
||||
for (i = 1; i < code.length; i++) {
|
||||
for (let i = 1; i < code.length; i++) {
|
||||
const char = code[i];
|
||||
if (char == '\\') {
|
||||
i++;
|
||||
|
|
Loading…
Add table
Reference in a new issue