UNPKG
orthomoji-dom
Version:
latest (2.1.0)
2.1.0
2.0.1
2.0.0
1.0.0
Create text art with emojis!
github.com/mcd-3/orthomoji-dom
mcd-3/orthomoji-dom
orthomoji-dom
/
fonts
/
font-data-chars.js
11 lines
(9 loc)
•
222 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * 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 };