reduceInitial

Replaces the CSS initial keyword with the actual value, when the resulting output is smaller

Example

Input

.box {
    min-width: initial;
}

Output

.box {
    min-width: 0;
}