![]() |
před 2 roky | |
---|---|---|
.. | ||
index.js | před 2 roky | |
license | před 2 roky | |
package.json | před 2 roky | |
readme.md | před 2 roky |
Get the real length of a string - by correctly counting astral symbols and ignoring ansi escape codes
String#length
errornously counts astral symbols as two characters.
$ npm install --save string-length
'🐴'.length;
//=> 2
stringLength('🐴');
//=> 1
stringLength('\u001b[1municorn\u001b[22m');
//=> 7
MIT © Sindre Sorhus