()
| 132 | } |
| 133 | |
| 134 | function getClosestActiveElement() { |
| 135 | return ( |
| 136 | ((self.calendarContainer?.getRootNode() as unknown) as DocumentOrShadowRoot) |
| 137 | .activeElement || document.activeElement |
| 138 | ); |
| 139 | } |
| 140 | |
| 141 | function bindToInstance<F extends Function>(fn: F): F { |
| 142 | return fn.bind(self); |
no outgoing calls
no test coverage detected
searching dependent graphs…