(delay?: OverlayDelay)
| 42 | } |
| 43 | |
| 44 | function normalizeDelay(delay?: OverlayDelay) { |
| 45 | return delay && typeof delay === 'object' |
| 46 | ? delay |
| 47 | : { |
| 48 | show: delay, |
| 49 | hide: delay, |
| 50 | }; |
| 51 | } |
| 52 | |
| 53 | // Simple implementation of mouseEnter and mouseLeave. |
| 54 | // React's built version is broken: https://github.com/facebook/react/issues/4251 |
no outgoing calls
no test coverage detected
searching dependent graphs…