Package detail

newline-remove

yoshuawuyts1.6kMIT1.0.2

Strip all newlines from the given string.

line ending, newline, remove, strip

readme

newline-remove

NPM version build status Test coverage Downloads

Strip all newlines from the given string. Supports linux, osx and windows line endings.

Installation

$ npm i --save newline-remove

Overview

var removeNewline = require('newline-remove');

removeNewline('foo\n bar\n');
// => 'foo bar'

License

MIT © yoshuawuyts