word-wrap / 1.0.2 last updated 9 hours ago created on Mar 30th 2014

Install

npm install --save word-wrap

Clone

git clone git@github.com:jonschlinkert/word-wrap.git

dependencies

No dependencies listed.

maintainers

jonschlinkert

versions 9 total

1.0.2 9 hours ago jonschlinkert
1.0.1 8 days ago jonschlinkert
1.0.0 3 months ago jonschlinkert
0.3.1 3 months ago jonschlinkert
0.3.0 3 months ago jonschlinkert
0.2.0 3 months ago jonschlinkert
0.1.3 10 months ago jonschlinkert
0.1.2 10 months ago jonschlinkert
0.1.0 a year ago jonschlinkert
3032 Downloads yesterday.

readme

word-wrap

Wrap words to a specified length.

Install with npm

npm i word-wrap --save

Usage

1
2
3
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:

1
2
3
4
5
  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

image

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});

Related projects

  • wordcount: Count the words in string. Has basic support for Cyrillic and CJK.
  • unique-words: Return the unique words in a string or array.
  • common-words: Updated list (JSON) of the 100 most common words in the English language. Useful for excluding these words from arrays.
  • shuffle-words: Shuffle the words in a string and optionally the letters in each word using the Fisher-Yates algorithm. Useful for creating test fixtures, benchmarking samples, etc.

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 (c) 2015 Jon Schlinkert
Released under the MIT license


This file was generated by verb-cli on March 07, 2015.

Resolving all dependencies.. This could take a while as our cache is not yet fully warmed up.