$isCustomEmoji
$isCustomEmoji will check if the given emoji is a custom emoji or not.
Usage
$isCustomEmoji[emojiResolver;guildID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| emojiResolver | string | Emoji you want to check if it is a custom emoji. | true |
| guildID? | number | ID of the guild where the emoji was created in. | false |
Example(s)
This will return true as
the 
1client.command({2 name: "isCustomEmoji",3 code: `4 $isCustomEmoji[<:LerefMoney:1003365344724910191>;773352845738115102]5 `6});