(animations)
| 72 | }; |
| 73 | |
| 74 | const parallel = (animations) => ({ |
| 75 | start: (callback) => { |
| 76 | const results = animations.map((animation) => { |
| 77 | animation.start(); |
| 78 | return { finished: true }; |
| 79 | }); |
| 80 | callback?.({ finished: results.every((result) => result.finished) }); |
| 81 | }, |
| 82 | }); |
| 83 | |
| 84 | RN.Animated.timing = timing; |
| 85 | RN.Animated.loop = loop; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…