The JS code to detect emojis (in the usual sense of the term "emoji") is simply:
let str = "...";
if(/\p{Extended_Pictographic}/u.test(str)) {
// do something
}
Is there some equivalently simple way to detect emojis that can have skin tone modifiers validly added to them?
A key requirement is that I don't have to update the regex over the years as more emojis are added, or existing emojis become skin-tone-able. Basically I'm wondering if there's something like a Skin
Unicode property escape, or some other elegant and future-proof solution.
Notes:
👶
(doesn't have skin tone modifier, but it is valid to add one to it).The relevant Unicode character property is called Emoji_Modifier_Base
. /\p{Emoji_Modifier_Base}/u.test()
will return true for every emoji character that can take a skin tone modifier.