From a31e605e09064a300e31a3c91466b613654ba98e Mon Sep 17 00:00:00 2001 From: JPBM135 <67063134+JPBM135@users.noreply.github.com> Date: Sun, 9 Oct 2022 18:19:53 -0300 Subject: [PATCH] docs(Utils): remove `private` from `parseEmoji` (#8718) chore(Utils): remove `private` from `parseEmoji` Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- packages/discord.js/src/util/Util.js | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/discord.js/src/util/Util.js b/packages/discord.js/src/util/Util.js index 10a417e55..3f68bbedf 100644 --- a/packages/discord.js/src/util/Util.js +++ b/packages/discord.js/src/util/Util.js @@ -243,7 +243,6 @@ async function fetchRecommendedShardCount(token, { guildsPerShard = 1_000, multi * * A Discord custom emoji (`<:name:id>` or ``) * @param {string} text Emoji string to parse * @returns {APIEmoji} Object with `animated`, `name`, and `id` properties - * @private */ function parseEmoji(text) { if (text.includes('%')) text = decodeURIComponent(text);