remove-whitespace
v1.1.0
Published
Strip all whitespace from a string
Downloads
6,878
Maintainers
Readme
remove-whitespace
Strip all whitespace from the given string. This is different from
[String.prototype.trim()
][trim-url] which only removes white spaces from the beginning and
end of a string.
Installation
$ npm i --save remove-whitespace
Overview
var removeWhitespace = require('remove-whitespace');
removeWhitespace(' foo bar '); // => 'foobar'
removeWhitespace('foo\n bar\n'); // => 'foo\nbar\n'