1f9a2064c6
1. cleanWhitespace > /test/utils/clean-whitespace.js 2. Missd the data-test attribute for placement failures in previous conflict
9 lines
236 B
JavaScript
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();
|
|
}
|