$emojiName
$emojiName will return the name of an emoji.
Usage
$emojiName[emojiResolver]Parameters
| Field | Type | Description | Required | 
|---|---|---|---|
| emojiResolver | string | Emoji string, id. | true | 
Example(s)
This will return the name of an emoji:
1client.command({2    name: "emojiName",3    code: `4  $emojiName[emojiResolver]5  `6});