Skip to content

$emojiExists

$emojiExists will check if the given emoji exists.

Usage

$emojiExists[emojiResolver]

Parameters

FieldTypeDescriptionRequired
emojiResolverstringEmoji you want to check if it exists.true

Example(s)

This will return true as the emoji emoji exists:

1
client.command({
2
name: "emojiExists",
3
code: `
4
$emojiExists[<:LerefMoney:1003365344724910191>]
5
`
6
});