(target: any)
| 7 | |
| 8 | /** Returns true if the `target` has ever animated. */ |
| 9 | export const hasAnimated = (target: any) => (target[$P] & HAS_ANIMATED) > 0 |
| 10 | |
| 11 | /** Returns true if the `target` is animating (even if paused). */ |
| 12 | export const isAnimating = (target: any) => (target[$P] & IS_ANIMATING) > 0 |
no outgoing calls
no test coverage detected
searching dependent graphs…