Skip to content

srcagency/split-text-to-chunks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Sep 18, 2017
d21925a Β· Sep 18, 2017

History

1 Commit
Sep 18, 2017
Sep 18, 2017
Sep 18, 2017
Sep 18, 2017
Sep 18, 2017
Sep 18, 2017
Sep 18, 2017

Repository files navigation

Split text into chunks

Prefers splitting at whitespace characters, but falls back to "hard wrapping", and obeys existing newlines.

const {split,width} = require('split-text-to-chunks')

const str = 'A lazy 🐢 made a pile of πŸ’©'

split(str, 8/*columns*/)
// -> [ 'A lazy 🐢', 'made a ', 'pile of ', 'πŸ’©' ]

split('A lazy dog', 3)
// -> [ 'A ', 'laz', 'y ', 'dog' ]

split('A lazy\ndog', 10)
// -> [ 'A lazy', 'dog' ]

width(str)
// -> 25

width(str, 20/* max, stop counting */)
// -> 20

width('one\ntwo\nthree')
// -> 5
$ npm i -g split-text-to-chunks

$ printf "A lazy 🐢 made a pile of πŸ’©" | wordwrap --columns 8 # default: 80
A lazy 🐢
made a
pile of
πŸ’©

$ printf "A lazy 🐢\nmade a pile of πŸ’©" | wordwrap --width
16

About

Split a text string to chunks for e.g. word wrapping

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published