2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-06-14 18:42:24 +03:00

feat(parser): context free tag mode (#165)

* feat(parser): initial context free tag mode

* fix: tests coverage

* chore: update readme

* chore: remove unused badge from readme
This commit is contained in:
Nikolay Kost
2023-01-27 05:26:09 +02:00
committed by GitHub
parent 6b2810fcf4
commit 19e8dd659e
11 changed files with 215 additions and 79 deletions
+4 -11
View File
@@ -13,23 +13,16 @@ const CLOSE_BRAKET = ']';
const SLASH = '/';
const BACKSLASH = '\\';
const PLACEHOLDER_SPACE_TAB = ' ';
const PLACEHOLDER_SPACE = ' ';
// const getChar = String.fromCharCode;
export {
N,
F,
R,
TAB,
EQ,
QUOTEMARK,
TAB,
SPACE,
SLASH,
BACKSLASH,
QUOTEMARK,
OPEN_BRAKET,
CLOSE_BRAKET,
SLASH,
PLACEHOLDER_SPACE_TAB,
PLACEHOLDER_SPACE,
BACKSLASH,
};