(keyframes, index)
| 226 | }; |
| 227 | |
| 228 | const createAnimationKeyframes = (keyframes, index) => |
| 229 | Object.entries(keyframes).map(([property, values]) => |
| 230 | addPropertyKeyframes(property, computeValue(values, index))); |
| 231 | |
| 232 | const getCurrentValue = (from, to, easing) => |
| 233 | from + (to - from) * easing; |
no test coverage detected