UNPKG
orthomoji
Version:
latest (1.5.1)
1.5.1
1.5.0
1.4.1
1.4.0
1.3.0
1.1.2
1.1.1
1.1.0
Create text art with emojis!
github.com/mcd-3/orthomoji
mcd-3/orthomoji
orthomoji
/
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 };