github.com/hspak/nomad@v0.7.2-0.20180309000617-bc4ae22a39a5/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  }