mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-30 15:24:05 +03:00
32a7fb51da
* refactor(*): convert to babel and generation to lib, es, dist * chore(*): remove generated files * fix(*): lint run command
36 lines
494 B
JavaScript
36 lines
494 B
JavaScript
const N = '\n';
|
|
const TAB = '\t';
|
|
const F = '\f';
|
|
const R = '\r';
|
|
|
|
const EQ = '=';
|
|
const QUOTEMARK = '"';
|
|
const SPACE = ' ';
|
|
|
|
const OPEN_BRAKET = '[';
|
|
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,
|
|
SPACE,
|
|
OPEN_BRAKET,
|
|
CLOSE_BRAKET,
|
|
SLASH,
|
|
PLACEHOLDER_SPACE_TAB,
|
|
PLACEHOLDER_SPACE,
|
|
BACKSLASH,
|
|
};
|