mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 08:53:15 +01:00
10 lines
189 B
JavaScript
10 lines
189 B
JavaScript
/**
|
|
* Collapse whitespace to a single space.
|
|
*
|
|
* @param {string} value
|
|
* @returns {string}
|
|
*/
|
|
export function collapseWhiteSpace(value) {
|
|
return String(value).replace(/\s+/g, ' ')
|
|
}
|