tailwindcss/src/util/collapseWhitespace.js
Adam Wathan 000eefd609 Don't change case of class names
This is unfortunate but it totally fucks up things that have numbers in
them.
2017-08-27 18:02:41 -04:00

4 lines
116 B
JavaScript

export default function collapseWhitespace(str) {
return str.replace(/(\n|\r|\r\n)/g, ' ').replace(/\s+/g, ' ')
}