Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
The wordwrap npm package is a utility for wrapping words to fit into specified columns. It can handle hard wraps (breaking words at the column limit) and soft wraps (breaking lines at spaces between words, respecting the column limit).
Hard Wrapping
Hard wrapping breaks words that exceed the specified column width. This is useful when you want to ensure that no line exceeds the column limit, even if it means breaking words.
var wordwrap = require('wordwrap');
var wrappedText = wordwrap.hard(20)("The quick brown fox jumps over the lazy dog.");
console.log(wrappedText);
Soft Wrapping
Soft wrapping breaks lines at spaces, ensuring that words are not split. This is useful for text where preserving whole words on each line is important.
var wordwrap = require('wordwrap');
var wrappedText = wordwrap(20)("The quick brown fox jumps over the lazy dog.");
console.log(wrappedText);
wrap-ansi is a package that wraps text to a specified column width, similar to wordwrap. However, it also handles ANSI escape codes, which are used to add color and formatting in terminal output. This makes it more suitable for CLI tools that output colored text.
cli-wrap is another package that provides text wrapping functionality with a focus on CLI applications. It offers more customization options for wrapping text, such as specifying the hanging indent of wrapped lines. It is a more feature-rich alternative to wordwrap.
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 15,467,732 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 for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.