1.0.0 • Published 9 years ago

split-text v1.0.0

Weekly downloads
28
License
MIT
Repository
github
Last release
9 years ago

split-text

Split a text into an array of chunks. Their length is determined by the limit argument. It will no cut off words unless there is no spaces in the text. Returns an array with the chunks.

Install

$ npm install --save split-text

Usage

var splitText = require('split-text');

splitText('unicorns are awesome', 15);
//=> ['unicorns are', 'awesome']

API

splitText(text, limit)

text

Required
Type: string

A string of text.

limit

Required Type: number

The max size of the chunks.

License

MIT © Kahlil Lechelt