I need a Regex to match all unicode emojis. I need this to check if a discord message has a Unicode Emoji in it. // Here is a example of matching one Unicode Emoji message.content.match(/😊/g) // or two message.content.match(/😇|😊/g) // and three message.content.match(/😇|😊|😈/g) // then so on. I have gotten up to like the last 300 or so emojis with this method then it stops working, sending all
