(ref, value)
| 38 | return obj; |
| 39 | } |
| 40 | function applyRef(ref, value) { |
| 41 | if ('function' == typeof ref) ref(value); |
| 42 | else if (null != ref) ref.current = value; |
| 43 | } |
| 44 | function cloneElement(vnode, props) { |
| 45 | return h( |
| 46 | vnode.nodeName, |
no test coverage detected
searching dependent graphs…