(right: T[])
| 352 | }; |
| 353 | |
| 354 | const propForDirection = <T,>(right: T[]): T[] => { |
| 355 | if (isAnimatedFromRight) { |
| 356 | return right; |
| 357 | } |
| 358 | |
| 359 | return right.reverse(); |
| 360 | }; |
| 361 | |
| 362 | const combinedStyles = getCombinedStyles({ |
| 363 | isAnimatedFromRight, |
no outgoing calls
no test coverage detected
searching dependent graphs…