1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-27 04:58:09 +09:00
hotomoe/packages/backend/src/misc/emoji-regex.ts

5 lines
166 B
TypeScript
Raw Normal View History

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