breakword
Get index of character after which variable 'word' must be broken given variable 'length' (accounts for wide characters).
Last updated 6 years ago by tecfu .
gpl-2.0 · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install breakword 
SYNC missed versions from official npm registry.

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.

Installation

npm install breakword 

Examples

  1. To find the index of the character to break after if we want to limit our characters fit on a line 3 spaces wide.
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.

Test

npm test
  • Save new test results to test/test.json
npm --save run test
  • Display test outputs only
npm --display run test

Build

npm run-script build

Current Tags

  • 1.0.5                                ...           latest (6 years ago)

6 Versions

  • 1.0.5                                ...           6 years ago
  • 1.0.4 [deprecated]           ...           6 years ago
  • 1.0.3                                ...           9 years ago
  • 1.0.2                                ...           9 years ago
  • 1.0.1                                ...           9 years ago
  • 1.0.0                                ...           9 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 1
Last Month 1
Dependencies (1)
Dev Dependencies (8)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |