This commit is contained in:
syuilo 2017-02-09 20:23:51 +09:00
parent bfde797c17
commit c90bf42f27
1 changed files with 1 additions and 1 deletions

View File

@ -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++;