minifyParams
Trims whitespace and normalizes at-rule parameters.
Example
Input
@media only screen and ( min-width: 400px, min-height: 500px ) {
.box {
color: blue;
}
}
Output
@media only screen and (min-width:400px,min-height:500px) {
.box {
color: blue;
}
}