(from, to, easing)
| 230 | addPropertyKeyframes(property, computeValue(values, index))); |
| 231 | |
| 232 | const getCurrentValue = (from, to, easing) => |
| 233 | from + (to - from) * easing; |
| 234 | |
| 235 | const recomposeValue = ([from, to], strings, round, easing) => |
| 236 | strings.reduce((style, string, index) => { |