{"version":3,"sources":["node_modules\\fbjs\\lib\\isTextNode.js"],"names":["isNode","require","isTextNode","object","nodeType","module","exports"],"mappings":"AAAA;;;;;;;;;;;;;AAaA,GAAIA,QAASC,QAAQ,UAAR,CAAb;;;;;;AAMA,QAASC,WAAT,CAAoBC,MAApB,CAA4B;AAC1B,MAAOH,QAAOG,MAAP,GAAkBA,OAAOC,QAAP,EAAmB,CAA5C;AACD;;AAEDC,OAAOC,OAAP,CAAiBJ,UAAjB","file":"isTextNode.js","sourceRoot":"d:/Work/Office/react-native-on-web/cli/tmpl/project","sourcesContent":["'use strict';\n\n/**\n * Copyright (c) 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 * @typechecks\n */\n\nvar isNode = require('./isNode');\n\n/**\n * @param {*} object The object to check.\n * @return {boolean} Whether or not the object is a DOM text node.\n */\nfunction isTextNode(object) {\n  return isNode(object) && object.nodeType == 3;\n}\n\nmodule.exports = isTextNode;"]}