{"version":3,"sources":["node_modules\\fbjs\\lib\\camelize.js"],"names":["_hyphenPattern","camelize","string","replace","_","character","toUpperCase","module","exports"],"mappings":"AAAA;;;;;;;;;;;;;AAaA,GAAIA,gBAAiB,OAArB;;;;;;;;;;;AAWA,QAASC,SAAT,CAAkBC,MAAlB,CAA0B;AACxB,MAAOA,QAAOC,OAAP,CAAeH,cAAf,CAA+B,SAAUI,CAAV,CAAaC,SAAb,CAAwB;AAC5D,MAAOA,WAAUC,WAAV,EAAP;AACD,CAFM,CAAP;AAGD;;AAEDC,OAAOC,OAAP,CAAiBP,QAAjB","file":"camelize.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 _hyphenPattern = /-(.)/g;\n\n/**\n * Camelcases a hyphenated string, for example:\n *\n *   > camelize('background-color')\n *   < \"backgroundColor\"\n *\n * @param {string} string\n * @return {string}\n */\nfunction camelize(string) {\n  return string.replace(_hyphenPattern, function (_, character) {\n    return character.toUpperCase();\n  });\n}\n\nmodule.exports = camelize;"]}