(property, values)
| 218 | }); |
| 219 | |
| 220 | const addPropertyKeyframes = (property, values) => { |
| 221 | const animatable = sanitize(values); |
| 222 | const strings = extractStrings(first(animatable)); |
| 223 | const numbers = animatable.map(extractNumbers); |
| 224 | const round = first(strings).startsWith("rgb"); |
| 225 | return {property, strings, numbers, round}; |
| 226 | }; |
| 227 | |
| 228 | const createAnimationKeyframes = (keyframes, index) => |
| 229 | Object.entries(keyframes).map(([property, values]) => |
no test coverage detected