1.1.0 • Published 8 years ago

remove-whitespace v1.1.0

Weekly downloads
560
License
MIT
Repository
github
Last release
8 years ago

remove-whitespace

Build Status Coverage Status Code Climate

Strip all whitespace from the given string. This is different from String.prototype.trim() 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'

License

MIT © Yoshua Wuyts