Socket
Socket
Sign inDemoInstall

condense-newlines

Package Overview
Dependencies
5
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    condense-newlines

Replace extraneous newlines with a single newline, or pass a specified number of newlines to use.


Version published
Weekly downloads
1.1M
decreased by-1.49%
Maintainers
2
Install size
44.2 kB
Created
Weekly downloads
 

Readme

Source

condense-newlines NPM version NPM downloads Build Status

Replace extraneous newlines with a single newline, or pass a specified number of newlines to use.

Install

Install with npm:

$ npm install condense-newlines --save

Usage

var condense = require('condense-newlines');
console.log(condense('\n\na\n\n\nb\nc\r\n\r\nd\n\n\n'));
//=> '\na\nb\nc\nd\n';

Options

options.sep

Specify the separator to use

console.log(condense('\n\na\n\n\nb\nc\r\n\r\nd\n\n\n', {sep: '\n\n'}));
//=> '\n\na\n\nb\n\nc\n\nd\n\n';

options.min

The minimum number of consecutive newlines to condense.

Default

: 2

console.log(condense('\n\na\n\n\nb\nc\r\n\r\nd\n\n\n', {min: 2}));
//=> '\n\na\n\nb\n\nc\n\nd\n\n';

options.keepWhitespace

Don't treat whitespace-only lines as newlines.

console.log(condense('\n\na\n\n      \nb\nc\r\n\r\nd\n\n\n', {
  keepWhitespace: true, sep: '\n\n'
}));

//=> '\n\na\n\n      \nb\n\nc\n\nd\n\n';

You might also be interested in these projects:

  • arr-union: Combines a list of arrays, returning a single array with unique values, using strict equality… more | homepage
  • array-unique: Return an array free of duplicate values. Fastest ES5 implementation. | homepage
  • arrayify-compact: Casts the given value to a flatten array, and removes falsey items (similar to lodash… more | homepage

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Building docs

Generate readme and API documentation with verb:

$ npm install verb && npm run docs

Or, if verb is installed globally:

$ verb

Running tests

Install dev dependencies:

$ npm install -d && npm test

Author

Jon Schlinkert

License

Copyright © 2016, Jon Schlinkert. Released under the MIT license.


This file was generated by verb, v0.9.0, on April 23, 2016.

Keywords

FAQs

Last updated on 23 Apr 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc