unicodeEmoji
unicodeEmoji(emoji: string): {
include: boolean,
matchs: RegExpMatchArray | null,
groups: Array<null>
}
Search unicode emoji in a string:
const { global } = require('regex-simplify');
const emoji = global.unicodeEmoji(`
😁
test
:u200b:
🌮
`);
console.log(emoji);
And here what return the function:
{
include: true,
matchs: [ '😁', '🌮' ],
groups: [ null, null ]
}
Last updated