Splits a string into grapheme clusters
import { graphemes } from './graphemes';for (const grapheme of graphemes('👋 Hello World')) { console.log(grapheme);}// Output:// 👋// Hello// World Copy
import { graphemes } from './graphemes';for (const grapheme of graphemes('👋 Hello World')) { console.log(grapheme);}// Output:// 👋// Hello// World
Splits a string into grapheme clusters