{"version":3,"sources":["node_modules\\react\\lib\\reactProdInvariant.js"],"names":["reactProdInvariant","code","argCount","arguments","length","message","argIdx","encodeURIComponent","error","Error","name","framesToPop","module","exports"],"mappings":";;;;;;;;;;AAUA;;;;;;;;;AASA,QAASA,mBAAT,CAA4BC,IAA5B,CAAkC;AAChC,GAAIC,UAAWC,UAAUC,MAAV,CAAmB,CAAlC;;AAEA,GAAIC,SAAU,yBAA2BJ,IAA3B,CAAkC,UAAlC,CAA+C,oEAA/C,CAAsHA,IAApI;;AAEA,IAAK,GAAIK,QAAS,CAAlB,CAAqBA,OAASJ,QAA9B,CAAwCI,QAAxC,CAAkD;AAChDD,SAAW,WAAaE,mBAAmBJ,UAAUG,OAAS,CAAnB,CAAnB,CAAxB;AACD;;AAEDD,SAAW,gEAAkE,mDAA7E;;AAEA,GAAIG,OAAQ,GAAIC,MAAJ,CAAUJ,OAAV,CAAZ;AACAG,MAAME,IAAN,CAAa,qBAAb;AACAF,MAAMG,WAAN,CAAoB,CAApB;;AAEA,KAAMH,MAAN;AACD;;AAEDI,OAAOC,OAAP,CAAiBb,kBAAjB","file":"reactProdInvariant.js","sourceRoot":"d:/Work/Office/react-native-on-web/cli/tmpl/project","sourcesContent":["/**\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 * \n */\n'use strict';\n\n/**\n * WARNING: DO NOT manually require this module.\n * This is a replacement for `invariant(...)` used by the error code system\n * and will _only_ be required by the corresponding babel pass.\n * It always throws.\n */\n\nfunction reactProdInvariant(code) {\n  var argCount = arguments.length - 1;\n\n  var message = 'Minified React error #' + code + '; visit ' + 'http://facebook.github.io/react/docs/error-decoder.html?invariant=' + code;\n\n  for (var argIdx = 0; argIdx < argCount; argIdx++) {\n    message += '&args[]=' + encodeURIComponent(arguments[argIdx + 1]);\n  }\n\n  message += ' for the full message or use the non-minified dev environment' + ' for full errors and additional helpful warnings.';\n\n  var error = new Error(message);\n  error.name = 'Invariant Violation';\n  error.framesToPop = 1; // we don't care about reactProdInvariant's own frame\n\n  throw error;\n}\n\nmodule.exports = reactProdInvariant;"]}