calc

Reduces CSS calc expressions whereever possible, ensuring both browser compatibility and compression.

Example

Input

.box {
    width: calc(2 * 100px);
}

Output

.box {
    width: 200px;
}