github.com/zoomfoo/nomad@v0.8.5-0.20180907175415-f28fd3a1a056/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 }