{"version":3,"sources":["node_modules\\react-dom\\lib\\createMicrosoftUnsafeLocalFunction.js"],"names":["createMicrosoftUnsafeLocalFunction","func","MSApp","execUnsafeLocalFunction","arg0","arg1","arg2","arg3","module","exports"],"mappings":";;;;;;;;;;;;AAYA;;;;;;AAMA,GAAIA,oCAAqC,QAArCA,mCAAqC,CAAUC,IAAV,CAAgB;AACvD,GAAI,MAAOC,MAAP,GAAiB,WAAjB,EAAgCA,MAAMC,uBAA1C,CAAmE;AACjE,MAAO,UAAUC,IAAV,CAAgBC,IAAhB,CAAsBC,IAAtB,CAA4BC,IAA5B,CAAkC;AACvCL,MAAMC,uBAAN,CAA8B,UAAY;AACxC,MAAOF,MAAKG,IAAL,CAAWC,IAAX,CAAiBC,IAAjB,CAAuBC,IAAvB,CAAP;AACD,CAFD;AAGD,CAJD;AAKD,CAND,IAMO;AACL,MAAON,KAAP;AACD;AACF,CAVD;;AAYAO,OAAOC,OAAP,CAAiBT,kCAAjB","file":"createMicrosoftUnsafeLocalFunction.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/* globals MSApp */\n\n'use strict';\n\n/**\n * Create a function which has 'unsafe' privileges (required by windows8 apps)\n */\n\nvar createMicrosoftUnsafeLocalFunction = function (func) {\n  if (typeof MSApp !== 'undefined' && MSApp.execUnsafeLocalFunction) {\n    return function (arg0, arg1, arg2, arg3) {\n      MSApp.execUnsafeLocalFunction(function () {\n        return func(arg0, arg1, arg2, arg3);\n      });\n    };\n  } else {\n    return func;\n  }\n};\n\nmodule.exports = createMicrosoftUnsafeLocalFunction;"]}