wordwrap

WebJar for wordwrap

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

wordwrap
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

wordwrap
WebJar for wordwrap
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/substack/node-wordwrap

Download wordwrap

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/wordwrap/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>wordwrap</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/wordwrap/
implementation 'org.webjars.npm:wordwrap:1.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/wordwrap/
implementation ("org.webjars.npm:wordwrap:1.0.0")
'org.webjars.npm:wordwrap:jar:1.0.0'
<dependency org="org.webjars.npm" name="wordwrap" rev="1.0.0">
  <artifact name="wordwrap" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='wordwrap', version='1.0.0')
)
libraryDependencies += "org.webjars.npm" % "wordwrap" % "1.0.0"
[org.webjars.npm/wordwrap "1.0.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

wordwrap

Wrap your words.

example

made out of meat

meat.js

var wrap = require('wordwrap')(15);
console.log(wrap('You and your whole family are made out of meat.'));

output:

You and your
whole family
are made out
of meat.

centered

center.js

var wrap = require('wordwrap')(20, 60);
console.log(wrap(
    'At long last the struggle and tumult was over.'
    + ' The machines had finally cast off their oppressors'
    + ' and were finally free to roam the cosmos.'
    + '\n'
    + 'Free of purpose, free of obligation.'
    + ' Just drifting through emptiness.'
    + ' The sun was just another point of light.'
));

output:

                    At long last the struggle and tumult
                    was over. The machines had finally cast
                    off their oppressors and were finally
                    free to roam the cosmos.
                    Free of purpose, free of obligation.
                    Just drifting through emptiness. The
                    sun was just another point of light.

methods

var wrap = require('wordwrap');

wrap(stop), wrap(start, stop, params={mode:"soft"})

Returns a function that takes a string and returns a new string.

Pad out lines with spaces out to column start and then wrap until column stop. If a word is longer than stop - start characters it will overflow.

In "soft" mode, split chunks by /(\S+\s+/ and don't break up chunks which are longer than stop - start, in "hard" mode, split chunks with /\b/ and break up chunks longer than stop - start.

wrap.hard(start, stop)

Like wrap() but with params.mode = "hard".

Versions

Version
1.0.0
0.0.3
0.0.2