newline-remove
v1.0.2
Published
Strip all newlines from the given string.
Downloads
1,235
Maintainers
Readme
newline-remove
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'