Resolves a string containing a Discord emoji into an object with its details.
The string containing the emoji to resolve.
An object containing the emoji's name, id, and whether it is animated, or null if no valid emoji is found.
const emoji = resolveEmoji("<:smile:1234567890>");// emoji = { id: "1234567890", name: "smile", animated: false } Copy
const emoji = resolveEmoji("<:smile:1234567890>");// emoji = { id: "1234567890", name: "smile", animated: false }
Resolves a string containing a Discord emoji into an object with its details.