Package Exports
- word-wrap
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 (word-wrap) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
word-wrap

Wrap words to a specified length.
Install with npm
$ npm i word-wrap --save
Usage
var wrap = require('word-wrap');
wrap('Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.');
Results in:
Lorem ipsum dolor sit amet, consectetur adipiscing
elit, sed do eiusmod tempor incididunt ut labore
et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat.
Options
options.width
Type: Number
Default: 50
The width of the text before wrapping to a new line.
Example:
wrap(str, {width: 60});
options.indent
Type: String
Default: `` (two spaces)
The string to use at the beginning of each line.
Example:
wrap(str, {indent: ' '});
options.newline
Type: String
Default: \n
The string to use at the end of each line.
Example:
wrap(str, {newline: '\n\n'});
options.trim
Type: Boolean
Default: false
Trim trailing whitespace from the returned string. This option is included since .trim()
would also strip the leading indentation from the first line.
Example:
wrap(str, {trim: true});
options.cut
Type: Boolean
Default: false
Break a word between any two letters when the word is longer than the specified width.
Example:
wrap(str, {cut: true});
Related projects
- common-words: Updated list (JSON) of the 100 most common words in the English language. Useful for… more
- shuffle-words: Shuffle the words in a string and optionally the letters in each word using the… more
- unique-words: Return the unique words in a string or array.
- wordcount: Count the words in string. Has basic support for Cyrillic and CJK.
Running tests
Install dev dependencies:
$ npm i -d && npm test
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Author
Jon Schlinkert
License
Copyright © 2015 Jon Schlinkert Released under the MIT license.
This file was generated by verb-cli on July 17, 2015.