fix unicode emoji regex flag
This commit is contained in:
parent
e3e4e5c27d
commit
01c5124e37
1 changed files with 1 additions and 1 deletions
|
|
@ -212,7 +212,7 @@ export const UnicodeEmojis = {
|
||||||
export const UnicodeEmojisRegex = new RegExp(
|
export const UnicodeEmojisRegex = new RegExp(
|
||||||
"[" +
|
"[" +
|
||||||
Object.keys(UnicodeEmojis).join()
|
Object.keys(UnicodeEmojis).join()
|
||||||
+ "]", "g "
|
+ "]", "g"
|
||||||
);
|
);
|
||||||
|
|
||||||
export function processDots(input: string): string {
|
export function processDots(input: string): string {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue