JSPM

linebreak-ts

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 416
  • Score
    100M100P100Q94437F
  • License MIT

Typescript version of linebreak algorithm

Package Exports

  • linebreak-ts

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (linebreak-ts) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

linebreak-ts

An implementation of the Unicode Line Breaking Algorithm (UAX #14)

Line breaking, also known as word wrapping, is the process of breaking a section of text into lines such that it will fit in the available width of a page, window or other display area. The Unicode Line Breaking Algorithm performs part of this process. Given an input text, it produces a set of positions called "break opportunities" that are appropriate points to begin a new line. The selection of actual line break positions from the set of break opportunities is not covered by the Unicode Line Breaking Algorithm, but is in the domain of higher level software with knowledge of the available width and the display size of the text.

This is a JavaScript/Typescript implementation of the Unicode Line Breaking Algorithm for Node.js (and browsers I guess). It is used by internally in H4 for line wrapping text in PDF documents, but since the algorithm knows nothing about the actual visual appearance or layout of text, it could be used for other things as well.

The code is a fork of linebreak except for the following differences:

  • It's rewritten in Typescript
  • It doesn't download and rebuilds an trie, which should contain unicode symbols on which it breaks the lines
  • It contains its own precompiled trie with those unicode symbols

Installation

You can install via npm

npm install linebreak-ts

Example

import { LineBreaker } from 'linebreak';

let lorem = 'lorem ipsum...';
let breaker = new LineBreaker(lorem);
let last = 0;
let bk;

while ((bk = breaker.nextBreak())) {
  // get the string between the last break and this one
  let word = lorem.slice(last, bk.position);
  console.log(word);

  // you can also check bk.required to see if this was a required break...
  if (bk.required) {
    console.log('\n\n');
  }

  last = bk.position;
}

License

MIT