remove-whitespace

Strip all whitespace from a string

Usage no npm install needed!

<script type="module">
  import removeWhitespace from 'https://cdn.skypack.dev/remove-whitespace';
</script>

README

remove-whitespace

Build Status Coverage Status Code Climate

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'

License

MIT © Yoshua Wuyts