open-nomad/ui/tests/utils/clean-whitespace.js
John Cowen 1f9a2064c6 Move cleanWhitespace to utils, readd data-test attribute for PF's
1. cleanWhitespace > /test/utils/clean-whitespace.js
2. Missd the data-test attribute for placement failures in previous
conflict
2018-01-19 13:59:19 +00:00

9 lines
236 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();
}