You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The pirate flag is composed of three code-points: 🏴 (black flag), \u200d (zero width joiner), and ☠️ (skull), but Grapheme.split drops the ☠️ codepoint, preserving only the first two (the second is invisible, but it's there, I checked).
The text was updated successfully, but these errors were encountered:
This must be the weirdest issue name I've ever submitted! 😂
Here's a little program to reproduce the issue:
The output is:
But it should be:
The pirate flag is composed of three code-points: 🏴 (black flag),
\u200d
(zero width joiner), and ☠️ (skull), butGrapheme.split
drops the ☠️ codepoint, preserving only the first two (the second is invisible, but it's there, I checked).The text was updated successfully, but these errors were encountered: