$isUnicodeEmoji
$isUnicodeEmoji will check if the given emoji is an unicode emoji.
Usage
$isUnicodeEmoji[emojiResolver]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| emojiResolver | string | Unicode emoji. | true |
Example(s)
This will return true as ”🤓” is a valid unicode emoji:
1client.command({2 name: "isUnicodeEmoji",3 code: `4 $isUnicodeEmoji[🤓]5 `6});