reduceInitial

当结果输出较小时,用实际值替换 CSS initial 关键字

示例

输入

.box {
    min-width: initial;
}

输出

.box {
    min-width: 0;
}