$ cnpm install breakword
Get index i.e. 0,1,2,... of the character where a word must be broken given it must be wrapped within a certain length of spaces.
Useful because javascript's String.length does not reflect the true width of emojis and wide characters.
npm install breakword
var Breakword = require ("breakword");
var word = "打破我的角色三";
var breakIndex = Breakword(word,3);
console.log(breakIndex) //0
The result here - 0 - means all the characters before index 0 (in this case only the character 打) can fit in a line 3 spaces long.
npm test
npm --save run test
npm --display run test
npm run-script build
Copyright 2013 - present © cnpmjs.org | Home |