Telegram Web K with changes to work inside I2P https://web.telegram.i2p/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
534 B

2 years ago
import Emoji from '../../config/emoji';
import {encodeEmoji} from '../../vendor/emoji';
2 years ago
export default function getEmojiUnified(emojiCode: string) {
2 years ago
const unified = encodeEmoji(emojiCode).replace(/-?fe0f/g, '');
2 years ago
/* if(unified === '1f441-200d-1f5e8') {
//unified = '1f441-fe0f-200d-1f5e8-fe0f';
unified = '1f441-fe0f-200d-1f5e8';
} */
2 years ago
if(!Emoji.hasOwnProperty(unified)
// && !emojiData.hasOwnProperty(unified.replace(/-?fe0f$/, ''))
2 years ago
) {
2 years ago
// console.error('lol', unified);
2 years ago
return;
}
return unified;
}