1.0.2 • Published 10 years ago

newline-remove v1.0.2

Weekly downloads
2,798
License
MIT
Repository
github
Last release
10 years ago

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