aboutsummaryrefslogtreecommitdiff
path: root/node_modules/discord.js/src/util/ParseEmoji.js
blob: d9f7b2212d1729e9c09f1575dce74d4cea562c5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = function parseEmoji(text) {
  if (text.includes('%')) {
    text = decodeURIComponent(text);
  }
  if (text.includes(':')) {
    const [name, id] = text.split(':');
    return { name, id };
  } else {
    return {
      name: text,
      id: null,
    };
  }
};