reduceTransforms

Converts between transform functions when there is a shorthand equivalent.

Example

Input

.box {
    transform: translate3d(0, 0, 0);
}

Output

.box {
    transform: translateZ(0);
}