1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-10-05 22:34:08 +02:00
ntfy/web/src/app/emojisMapped.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
188 B
JavaScript
Raw Normal View History

import { rawEmojis } from "./emojis";
// Format emojis (see emoji.js)
export default Object.fromEntries(rawEmojis.flatMap((emoji) => emoji.aliases.map((alias) => [alias, emoji.emoji])));