()
| 21 | } |
| 22 | |
| 23 | export function resolveOwner(): null | ReactComponentInfo { |
| 24 | if (currentOwner) return currentOwner; |
| 25 | if (supportsComponentStorage) { |
| 26 | const owner = componentStorage.getStore(); |
| 27 | if (owner) return owner; |
| 28 | } |
| 29 | return null; |
| 30 | } |
no outgoing calls
no test coverage detected