iceshrimp-legacy/packages/backend/src/misc/emoji-regex.ts

5 lines
161 B
TypeScript
Raw Normal View History

2023-01-13 05:40:33 +01:00
import twemoji from "twemoji-parser/dist/lib/regex.js";
const twemojiRegex = twemoji.default;
export const emojiRegex = new RegExp(`(${twemojiRegex.source})`);