normalizeWhitespace
ルール、セレクター、宣言の中と周囲の空白文字をトリムし、すべてのセレクター内の最後のセミコロンを削除します。
例
入力
.box {
text-decoration: underline;
color: red !important;
}
出力
.box{text-decoration:underline;color:red!important}
ルール、セレクター、宣言の中と周囲の空白文字をトリムし、すべてのセレクター内の最後のセミコロンを削除します。
.box {
text-decoration: underline;
color: red !important;
}
.box{text-decoration:underline;color:red!important}