github.com/emate/nomad@v0.8.2-wo-binpacking/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  }