normalizeTimingFunctions

Normalizes transition timing in the `animation`, `animation-timing-function`, `transition` and `transition-timing-function` properties.

Example

Input

.box {
    transition: color 3s steps(30, end);
}

Output

.box {
    transition: color 3s steps(30);
}