✂️ Runes
Unicode-aware JS string splitting with full Emoji support.
Split a string into its constituent characters, without munging emoji and other non-BMP code points.
this is typescript version fork form runes
Why?
The native String#split
implementation does not pay attention to surrogate pairs. When the code units of a surrogate pair are split apart, they are not intelligible on their own. Unless they are put back together in the correct order, individual code units will cause problems in code that handles strings.
Installation
$ npm install runes2
Example
const runes = require('runes2')
const runes = require('runes2').runes
import runes from 'runes2';
import * as runes from 'runes2';
'♥️'.split('')
'Emoji 🤖'.split('')
'👩👩👧👦'.split('')
[...'♥️'] => [ '♥', '️' ]
[...'Emoji 🤖']
[...'👩👩👧👦']
runes('♥️')
runes('Emoji 🤖')
runes('👩👩👧👦')
Substring example
'👨👨👧👧a'.substring(1)
runes.substr('👨👨👧👧a', 1)