condense-whitespace
v3.0.0
Published
Remove leading, trailing, and repeated whitespace from a string
Downloads
155,262
Maintainers
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---baz
→foo-bar-baz