79556006

Date: 2025-04-04 18:09:37
Score: 2.5
Natty:
Report link

You can also try to use Intl.Segmenter:

const text = "😀🎃👪";
const splitEmoji = [...new Intl.Segmenter().segment(text)].map(x => x.segment);
splitEmoji.pop();
console.log(splitEmoji.join(""));

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dima S.