When I'm using emojis, and not shortcodes, π·ββοΈ (which is actually :construction_worker_man:) is being picked up as :construction_worker: - but π· (which really is :construction_worker:) is not
I've been banging my head against a wall trying to figure this out, but the issue doesn't seem to be with gitmojis
import { gitmojis } from 'gitmojis';
const gitmojisByEmoji = Object.fromEntries(
gitmojis.map(gitmoji => [gitmoji.emoji, gitmoji])
);
var constructionWorker = gitmojisByEmoji['π·'];
console.log(constructionWorker["code"]);
When I'm using emojis, and not shortcodes, π·ββοΈ (which is actually
:construction_worker_man:) is being picked up as:construction_worker:- but π· (which really is:construction_worker:) is notI've been banging my head against a wall trying to figure this out, but the issue doesn't seem to be with gitmojis
:construction_worker: