(usable)
| 7348 | return thenable; |
| 7349 | } |
| 7350 | function use(usable) { |
| 7351 | if (null !== usable && "object" === typeof usable) { |
| 7352 | if ("function" === typeof usable.then) return useThenable(usable); |
| 7353 | if (usable.$$typeof === REACT_CONTEXT_TYPE) return readContext(usable); |
| 7354 | } |
| 7355 | throw Error(formatProdErrorMessage(438, String(usable))); |
| 7356 | } |
| 7357 | function useMemoCache(size) { |
| 7358 | var memoCache = null, |
| 7359 | updateQueue = currentlyRenderingFiber$1.updateQueue; |
no test coverage detected