This commit is contained in:
Berkan Sivri 2020-01-10 14:14:38 +00:00 committed by GitHub
commit c7c478bbe4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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