()
| 326 | }; |
| 327 | |
| 328 | const getEasing = () => { |
| 329 | if (shouldForceLinearEasing) { |
| 330 | return 'linear'; |
| 331 | } |
| 332 | if (_easing !== undefined) { |
| 333 | return _easing; |
| 334 | } |
| 335 | if (parentAnimation) { |
| 336 | return parentAnimation.getEasing(); |
| 337 | } |
| 338 | |
| 339 | return 'linear'; |
| 340 | }; |
| 341 | |
| 342 | const getDuration = () => { |
| 343 | if (shouldForceSyncPlayback) { |
no test coverage detected