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, }; } };