{"version":3,"sources":["node_modules\\react-dom\\lib\\ReactDOMContainerInfo.js"],"names":["validateDOMNesting","require","DOC_NODE_TYPE","ReactDOMContainerInfo","topLevelWrapper","node","info","_topLevelWrapper","_idCounter","_ownerDocument","nodeType","ownerDocument","_node","_tag","nodeName","toLowerCase","_namespaceURI","namespaceURI","process","env","NODE_ENV","_ancestorInfo","updatedAncestorInfo","module","exports"],"mappings":";;;;;;;;;;AAUA;;AAEA,GAAIA,oBAAqBC,QAAQ,sBAAR,CAAzB;;AAEA,GAAIC,eAAgB,CAApB;;AAEA,QAASC,sBAAT,CAA+BC,eAA/B,CAAgDC,IAAhD,CAAsD;AACpD,GAAIC,MAAO;AACTC,iBAAkBH,eADT;AAETI,WAAY,CAFH;AAGTC,eAAgBJ,KAAOA,KAAKK,QAAL,GAAkBR,aAAlB,CAAkCG,IAAlC,CAAyCA,KAAKM,aAArD,CAAqE,IAH5E;AAITC,MAAOP,IAJE;AAKTQ,KAAMR,KAAOA,KAAKS,QAAL,CAAcC,WAAd,EAAP,CAAqC,IALlC;AAMTC,cAAeX,KAAOA,KAAKY,YAAZ,CAA2B,IANjC,CAAX;;AAQA,GAAIC,QAAQC,GAAR,CAAYC,QAAZ,GAAyB,YAA7B,CAA2C;AACzCd,KAAKe,aAAL,CAAqBhB,KAAOL,mBAAmBsB,mBAAnB,CAAuC,IAAvC,CAA6ChB,KAAKO,IAAlD,CAAwD,IAAxD,CAAP,CAAuE,IAA5F;AACD;AACD,MAAOP,KAAP;AACD;;AAEDiB,OAAOC,OAAP,CAAiBrB,qBAAjB","file":"ReactDOMContainerInfo.js","sourceRoot":"d:/Work/Office/react-native-on-web/cli/tmpl/project","sourcesContent":["/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar validateDOMNesting = require('./validateDOMNesting');\n\nvar DOC_NODE_TYPE = 9;\n\nfunction ReactDOMContainerInfo(topLevelWrapper, node) {\n  var info = {\n    _topLevelWrapper: topLevelWrapper,\n    _idCounter: 1,\n    _ownerDocument: node ? node.nodeType === DOC_NODE_TYPE ? node : node.ownerDocument : null,\n    _node: node,\n    _tag: node ? node.nodeName.toLowerCase() : null,\n    _namespaceURI: node ? node.namespaceURI : null\n  };\n  if (process.env.NODE_ENV !== 'production') {\n    info._ancestorInfo = node ? validateDOMNesting.updatedAncestorInfo(null, info._tag, null) : null;\n  }\n  return info;\n}\n\nmodule.exports = ReactDOMContainerInfo;"]}