2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-05-15 11:59:37 +03:00

style(parser): remove unused func

This commit is contained in:
Nikolay Kostyurin
2018-09-24 00:45:01 +02:00
parent b63864ca07
commit b56b3c71a5
-1
View File
@@ -90,7 +90,6 @@ function createLexer(buffer, options = {}) {
const isWhiteSpace = char => (WHITESPACES.indexOf(char) >= 0);
const isCharToken = char => (NOT_CHAR_TOKENS.indexOf(char) === -1);
const isSpecialChar = char => (SPECIAL_CHARS.indexOf(char) >= 0);
const isNotValidCharInTag = char => ([openTag].indexOf(char) >= 0);
const emitToken = (token) => {
if (options.onToken) {