mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 17:03:17 +01:00
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
/**
|
|
* Collapse whitespace to a single space.
|
|
*
|
|
* @param {string} value
|
|
* @returns {string}
|
|
*/
|
|
export function collapseWhiteSpace(value: string): string;
|