remove tiny decleration

This commit is contained in:
berkansivri 2020-01-10 17:12:19 +03:00
parent d8d4013045
commit 326598a8e1

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 });