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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user