wordwrap
Advanced tools
Weekly downloads
Readme
Wrap your words.
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.
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.
var wrap = require('wordwrap');
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
.
Like wrap()
but with params.mode = "hard"
.
FAQs
Wrap those words. Show them at what columns to start and stop.
The npm package wordwrap receives a total of 17,029,131 weekly downloads. As such, wordwrap popularity was classified as popular.
We found that wordwrap demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a GitHub app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.