minifySelectors

移除不必要的合格通用选择器,取消属性选择器引号,修剪和规范选择器字符串。

示例

输入

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

输出

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