A regex to match any full character, considering weird character ranges. Tested on every single emoji and unicode character. Based on the Lodash implementation.
npm install char-regex
import charRegex from 'char-regex';
'β€οΈππ½'.match(/./);
//=> ['', '', '', '', '', '', '']
'β€οΈππ½'.match(charRegex());
//=> ['β€οΈ', 'ππ½']
- string-length - Get the real length of a string