fix emoji convertion
This commit is contained in:
parent
01c5124e37
commit
ebb786b3ed
1 changed files with 3 additions and 3 deletions
|
|
@ -210,9 +210,9 @@ export const UnicodeEmojis = {
|
|||
"🪞": "거울", "💄": "립스틱",
|
||||
}
|
||||
export const UnicodeEmojisRegex = new RegExp(
|
||||
"[" +
|
||||
Object.keys(UnicodeEmojis).join()
|
||||
+ "]", "g"
|
||||
"(" +
|
||||
Object.keys(UnicodeEmojis).join(")|(")
|
||||
+ ")", "g"
|
||||
);
|
||||
|
||||
export function processDots(input: string): string {
|
||||
|
|
|
|||
Loading…
Reference in a new issue