open-nomad/ui/tests/utils/clean-whitespace.js
2022-01-20 09:46:45 -05:00

6 lines
221 B
JavaScript

// 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();
}