mirror of
https://github.com/standardnotes/app
synced 2026-08-05 12:16:39 -04:00
8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
export function getEmojiLength(emoji: string): number {
|
|
try {
|
|
return [...new Intl.Segmenter().segment(emoji)].length
|
|
} catch (error) {
|
|
return [...emoji].length
|
|
}
|
|
}
|