Package Exports
- normalize-space-x
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (normalize-space-x) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
normalize-space-x
Trims and replaces sequences of whitespace characters by a single space.
module.exports(string)
⇒ string
⏏
normalize-space-x
⇒ string
This method strips leading and trailing white-space from a string, replaces sequences of whitespace characters by a single space, and returns the resulting string. (ES2019)
Kind: static property of normalize-space-x
Returns: string
- The normalized string.
Throws:
TypeError
If string is null or undefined or not coercible.
Param | Type | Description |
---|---|---|
string | string |
The string to be normalized. |
Example
import normalizeSpace from 'normalize-space-x';
console.log(normalizeSpace(' \t\na \t\nb \t\n') === 'a b'); // true