normalizeRepeatStyle

Reduces the two value syntax for `background-repeat` into the single value syntax where possible, in both the property itself and the `background` shorthand. Also works for `mask-repeat`.

Example

Input

.box {
    background-repeat: no-repeat repeat;
}

Output

.box {
    background-repeat: repeat-y;
}