UNPKG

orthomoji-dom

Version:
11 lines (9 loc) 222 B
/** * font-data-chars.js * * Variables that show what each number represents in font files within /fonts */ const BLANK_SPACE = 0; const EMOJI_CHAR = 1; const NEWLINE = 2; export { BLANK_SPACE, EMOJI_CHAR, NEWLINE };