New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

breakword

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

breakword

Get index of character after which variable 'word' must be broken given variable 'length' (accounts for wide characters).

1.0.6
latest
Source
npm
Version published
Weekly downloads
516K
-24.62%
Maintainers
1
Weekly downloads
 
Created
Source

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

  • To find the index of the character to break after if we want to limit our characters fit on a line 3 spaces wide.
const Breakword = require ("breakword");
const word = "打破我的角色三";
const 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

Keywords

wordbreak

FAQs

Package last updated on 30 May 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts