This commit is contained in:
Vse Mozhet Byt 2018-01-16 16:56:57 +00:00 committed by GitHub
commit 205a5b315c

View File

@ -495,7 +495,7 @@ function tokenizer(input) {
} }
// Skip the closing double quote. // Skip the closing double quote.
char = input[++current]; ++current;
// And add our `string` token to the `tokens` array. // And add our `string` token to the `tokens` array.
tokens.push({ type: 'string', value }); tokens.push({ type: 'string', value });