gluon
    Preparing search index...

    Function resolveEmoji

    • Resolves a string containing a Discord emoji into an object with its details.

      Parameters

      • text: string

        The string containing the emoji to resolve.

      Returns null | ResolvedEmoji

      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 }