github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/ui/tests/utils/clean-whitespace.js (about) 1 // cleans whitespace from a string, for example for cleaning 2 // textContent in DOM nodes with indentation 3 export default function cleanWhitespace(string) { 4 return string 5 .replace(/\n/g, '') 6 .replace(/ +/g, ' ') 7 .trim(); 8 }