| 3 | import emojisRaws from 'emoji-assets/emoji.json'; |
| 4 | |
| 5 | interface EmojiData { |
| 6 | code_points: { |
| 7 | base: string; |
| 8 | fully_qualified: string; |
| 9 | }; |
| 10 | } |
| 11 | |
| 12 | const emojis = emojisRaws as Record<string, EmojiData>; |
| 13 | const output: Record<string, string> = {}; |
nothing calls this directly
no outgoing calls
no test coverage detected