{"version":3,"sources":["node_modules\\react-dom\\lib\\SyntheticClipboardEvent.js"],"names":["SyntheticEvent","require","ClipboardEventInterface","clipboardData","event","window","SyntheticClipboardEvent","dispatchConfig","dispatchMarker","nativeEvent","nativeEventTarget","call","augmentClass","module","exports"],"mappings":";;;;;;;;;;AAUA;;AAEA,GAAIA,gBAAiBC,QAAQ,kBAAR,CAArB;;;;;;AAMA,GAAIC,yBAA0B;AAC5BC,cAAe,uBAAUC,KAAV,CAAiB;AAC9B,MAAO,iBAAmBA,MAAnB,CAA2BA,MAAMD,aAAjC,CAAiDE,OAAOF,aAA/D;AACD,CAH2B,CAA9B;;;;;;;;;AAYA,QAASG,wBAAT,CAAiCC,cAAjC,CAAiDC,cAAjD,CAAiEC,WAAjE,CAA8EC,iBAA9E,CAAiG;AAC/F,MAAOV,gBAAeW,IAAf,CAAoB,IAApB,CAA0BJ,cAA1B,CAA0CC,cAA1C,CAA0DC,WAA1D,CAAuEC,iBAAvE,CAAP;AACD;;AAEDV,eAAeY,YAAf,CAA4BN,uBAA5B,CAAqDJ,uBAArD;;AAEAW,OAAOC,OAAP,CAAiBR,uBAAjB","file":"SyntheticClipboardEvent.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 SyntheticEvent = require('./SyntheticEvent');\n\n/**\n * @interface Event\n * @see http://www.w3.org/TR/clipboard-apis/\n */\nvar ClipboardEventInterface = {\n  clipboardData: function (event) {\n    return 'clipboardData' in event ? event.clipboardData : window.clipboardData;\n  }\n};\n\n/**\n * @param {object} dispatchConfig Configuration used to dispatch this event.\n * @param {string} dispatchMarker Marker identifying the event target.\n * @param {object} nativeEvent Native browser event.\n * @extends {SyntheticUIEvent}\n */\nfunction SyntheticClipboardEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticEvent.augmentClass(SyntheticClipboardEvent, ClipboardEventInterface);\n\nmodule.exports = SyntheticClipboardEvent;"]}