(topLevelWrapper, node)
| 7462 | var DOC_NODE_TYPE = 9; |
| 7463 | |
| 7464 | function ReactDOMContainerInfo(topLevelWrapper, node) { |
| 7465 | var info = { |
| 7466 | _topLevelWrapper: topLevelWrapper, |
| 7467 | _idCounter: 1, |
| 7468 | _ownerDocument: node ? node.nodeType === DOC_NODE_TYPE ? node : node.ownerDocument : null, |
| 7469 | _tag: node ? node.nodeName.toLowerCase() : null, |
| 7470 | _namespaceURI: node ? node.namespaceURI : null |
| 7471 | }; |
| 7472 | if ("development" !== 'production') { |
| 7473 | info._ancestorInfo = node ? validateDOMNesting.updatedAncestorInfo(null, info._tag, null) : null; |
| 7474 | } |
| 7475 | return info; |
| 7476 | } |
| 7477 | |
| 7478 | module.exports = ReactDOMContainerInfo; |
| 7479 | },{"140":140}],40:[function(_dereq_,module,exports){ |
no outgoing calls
no test coverage detected
searching dependent graphs…