(target)
| 222 | ); |
| 223 | |
| 224 | export function isReactRefObj(target) { |
| 225 | if (target && typeof target === 'object') { |
| 226 | return 'current' in target; |
| 227 | } |
| 228 | return false; |
| 229 | } |
| 230 | |
| 231 | function getTag(value) { |
| 232 | if (value == null) { |
no outgoing calls
no test coverage detected
searching dependent graphs…