{"version":3,"sources":["node_modules\\react-dom\\lib\\getTextContentAccessor.js"],"names":["ExecutionEnvironment","require","contentKey","getTextContentAccessor","canUseDOM","document","documentElement","module","exports"],"mappings":";;;;;;;;;;AAUA;;AAEA,GAAIA,sBAAuBC,QAAQ,+BAAR,CAA3B;;AAEA,GAAIC,YAAa,IAAjB;;;;;;;;AAQA,QAASC,uBAAT,EAAkC;AAChC,GAAI,CAACD,UAAD,EAAeF,qBAAqBI,SAAxC,CAAmD;;;AAGjDF,WAAa,eAAiBG,UAASC,eAA1B,CAA4C,aAA5C,CAA4D,WAAzE;AACD;AACD,MAAOJ,WAAP;AACD;;AAEDK,OAAOC,OAAP,CAAiBL,sBAAjB","file":"getTextContentAccessor.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 ExecutionEnvironment = require('fbjs/lib/ExecutionEnvironment');\n\nvar contentKey = null;\n\n/**\n * Gets the key used to access text content on a DOM node.\n *\n * @return {?string} Key used to access text content.\n * @internal\n */\nfunction getTextContentAccessor() {\n  if (!contentKey && ExecutionEnvironment.canUseDOM) {\n    // Prefer textContent to innerText because many browsers support both but\n    // SVG <text> elements don't support innerText even when <div> does.\n    contentKey = 'textContent' in document.documentElement ? 'textContent' : 'innerText';\n  }\n  return contentKey;\n}\n\nmodule.exports = getTextContentAccessor;"]}