minifyParams (縮減參數)

修剪空白並標準化 at-rule 參數。

範例

輸入

@media only screen   and ( min-width: 400px, min-height: 500px ) {
    .box {
        color: blue;
    }
}

輸出

@media only screen and (min-width:400px,min-height:500px) {
    .box {
        color: blue;
    }
}