{"version":3,"sources":["node_modules\\fbjs\\lib\\isNode.js"],"names":["isNode","object","doc","ownerDocument","document","defaultView","window","Node","nodeType","nodeName","module","exports"],"mappings":"AAAA;;;;;;;;;;;;;;;;;AAiBA,QAASA,OAAT,CAAgBC,MAAhB,CAAwB;AACtB,GAAIC,KAAMD,OAASA,OAAOE,aAAP,EAAwBF,MAAjC,CAA0CG,QAApD;AACA,GAAIC,aAAcH,IAAIG,WAAJ,EAAmBC,MAArC;AACA,MAAO,CAAC,EAAEL,SAAW,MAAOI,aAAYE,IAAnB,GAA4B,UAA5B,CAAyCN,iBAAkBI,aAAYE,IAAvE,CAA8E,MAAON,OAAP,GAAkB,QAAlB,EAA8B,MAAOA,QAAOO,QAAd,GAA2B,QAAzD,EAAqE,MAAOP,QAAOQ,QAAd,GAA2B,QAAzL,CAAF,CAAR;AACD;;AAEDC,OAAOC,OAAP,CAAiBX,MAAjB","file":"isNode.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\n/**\n * @param {*} object The object to check.\n * @return {boolean} Whether or not the object is a DOM node.\n */\nfunction isNode(object) {\n  var doc = object ? object.ownerDocument || object : document;\n  var defaultView = doc.defaultView || window;\n  return !!(object && (typeof defaultView.Node === 'function' ? object instanceof defaultView.Node : typeof object === 'object' && typeof object.nodeType === 'number' && typeof object.nodeName === 'string'));\n}\n\nmodule.exports = isNode;"]}