(event)
| 148 | |
| 149 | var clickOutsideHandled = false; |
| 150 | var handleClickOutside = function(event) { |
| 151 | if (event === undefined) { |
| 152 | throw new Error('event cannot be undefined'); |
| 153 | } |
| 154 | |
| 155 | clickOutsideHandled = true; |
| 156 | }; |
| 157 | |
| 158 | var WrappedWithCustomHandler = wrapComponent(Component); |
| 159 |
nothing calls this directly
no outgoing calls
no test coverage detected