normalizeWhitespace

Trims whitespace inside and around rules, selectors & declarations, plus removes the final semicolon inside every selector.

Example

Input

.box {
    text-decoration: underline;
    color: red !important;
}

Output

.box{text-decoration:underline;color:red!important}