Bug Report Checklist
Expected
I ran into issues with https://github.com/momocow/semantic-release-gitmoji where the release notes aren't picking up the right construction_worker - I think this is an issue here on node-emoji
import * as emoji from 'node-emoji'
console.log(emoji.find('👷'))
console.log(emoji.find('👷♂️'))
console.log(emoji.find('👷♀️'))
{ emoji: '👷', key: 'construction_worker' }
{ emoji: '👷♂️', key: 'construction_worker_man' }
{ emoji: '👷♀', key: 'construction_worker_woman' }
Actual
import * as emoji from 'node-emoji'
console.log(emoji.find('👷'))
console.log(emoji.find('👷♂️'))
console.log(emoji.find('👷♀️'))
{ emoji: '👷', key: 'construction_worker_man' }
undefined
{ emoji: '👷♀', key: 'construction_worker_woman' }
Additional Info
https://playcode.io/2477888
Bug Report Checklist
mainbranch of the repository.Expected
I ran into issues with https://github.com/momocow/semantic-release-gitmoji where the release notes aren't picking up the right
construction_worker- I think this is an issue here on node-emojiActual
Additional Info
https://playcode.io/2477888