()
| 357 | }; |
| 358 | |
| 359 | const getIterations = () => { |
| 360 | if (_iterations !== undefined) { |
| 361 | return _iterations; |
| 362 | } |
| 363 | if (parentAnimation) { |
| 364 | return parentAnimation.getIterations(); |
| 365 | } |
| 366 | |
| 367 | return 1; |
| 368 | }; |
| 369 | |
| 370 | const getDelay = () => { |
| 371 | if (forceDelayValue !== undefined) { |
no test coverage detected