1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-26 04:28:07 +09:00
hotomoe/packages/backend/src/misc/emoji-regex.ts
2022-02-27 14:10:31 +09:00

5 lines
161 B
TypeScript

import twemoji from 'twemoji-parser/dist/lib/regex.js';
const twemojiRegex = twemoji.default;
export const emojiRegex = new RegExp(`(${twemojiRegex.source})`);