From 77cdce7cb7516fef53e9f248ba3f9fa387df6316 Mon Sep 17 00:00:00 2001 From: JPBM135 <67063134+JPBM135@users.noreply.github.com> Date: Fri, 7 Oct 2022 10:31:55 -0300 Subject: [PATCH] chore(Utils): remove `private` from `parseEmoji` --- 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 10a417e55911..3f68bbedfec4 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);