condense-whitespace

Remove leading, trailing, and repeated whitespace from a string

Usage no npm install needed!

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

README

condense-whitespace

Remove leading, trailing, and repeated whitespace from a string

Install

$ npm install condense-whitespace

Usage

import condenseWhitespace from 'condense-whitespace';

condenseWhitespace('  foo bar     baz ');
//=> 'foo bar baz'

Related

  • trim-repeated - Trim a consecutively repeated substring: foo--bar---bazfoo-bar-baz