11 lines
299 B
JavaScript
11 lines
299 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
// cleans whitespace from a string, for example for cleaning
|
|
// textContent in DOM nodes with indentation
|
|
export default function cleanWhitespace(string) {
|
|
return string.replace(/\n/g, '').replace(/ +/g, ' ').trim();
|
|
}
|