()
| 312 | }; |
| 313 | |
| 314 | const getDirection = () => { |
| 315 | if (forceDirectionValue !== undefined) { |
| 316 | return forceDirectionValue; |
| 317 | } |
| 318 | if (_direction !== undefined) { |
| 319 | return _direction; |
| 320 | } |
| 321 | if (parentAnimation) { |
| 322 | return parentAnimation.getDirection(); |
| 323 | } |
| 324 | |
| 325 | return 'normal'; |
| 326 | }; |
| 327 | |
| 328 | const getEasing = () => { |
| 329 | if (shouldForceLinearEasing) { |
no test coverage detected