(value)
| 424 | const parts = propertyPath.split('.'); |
| 425 | const lastKey = parts.pop(); |
| 426 | const callback = (value) => |
| 427 | { |
| 428 | let obj = target; |
| 429 | for (const k of parts) obj = obj[k]; |
| 430 | obj[lastKey] = value; |
| 431 | }; |
| 432 | return new Tween(callback, start, end, duration, options); |
| 433 | } |
| 434 |
no outgoing calls
no test coverage detected