(value, options)
| 386 | }; // useState |
| 387 | |
| 388 | var useState = function useState(value, options) { |
| 389 | return useReducer(getValue, value, void 0, options); |
| 390 | }; // useContext |
| 391 | |
| 392 | var hooks = new WeakMap(); |
| 393 |
nothing calls this directly
no test coverage detected