ミ二ファイセレクター

不要な修飾されたユニバーサルセレクターを削除し、属性セレクターの引用符を削除し、セレクター文字列を整えて正規化します。

入力

*.box
.box::before
.box       .box
[class*="box"]
.box ~ [class] {
    color: red;
}

出力

.box
.box:before
.box .box
[class*=box]
.box~[class] {
    color: red;
}