{"version":3,"sources":["node_modules\\fbjs\\lib\\camelizeStyleName.js"],"names":["camelize","require","msPattern","camelizeStyleName","string","replace","module","exports"],"mappings":";;;;;;;;;;;AAWA;;AAEA,GAAIA,UAAWC,QAAQ,YAAR,CAAf;;AAEA,GAAIC,WAAY,OAAhB;;;;;;;;;;;;;;;;;;;AAmBA,QAASC,kBAAT,CAA2BC,MAA3B,CAAmC;AACjC,MAAOJ,UAASI,OAAOC,OAAP,CAAeH,SAAf,CAA0B,KAA1B,CAAT,CAAP;AACD;;AAEDI,OAAOC,OAAP,CAAiBJ,iBAAjB","file":"camelizeStyleName.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 * @typechecks\n */\n\n'use strict';\n\nvar camelize = require('./camelize');\n\nvar msPattern = /^-ms-/;\n\n/**\n * Camelcases a hyphenated CSS property name, for example:\n *\n *   > camelizeStyleName('background-color')\n *   < \"backgroundColor\"\n *   > camelizeStyleName('-moz-transition')\n *   < \"MozTransition\"\n *   > camelizeStyleName('-ms-transition')\n *   < \"msTransition\"\n *\n * As Andi Smith suggests\n * (http://www.andismith.com/blog/2012/02/modernizr-prefixed/), an `-ms` prefix\n * is converted to lowercase `ms`.\n *\n * @param {string} string\n * @return {string}\n */\nfunction camelizeStyleName(string) {\n  return camelize(string.replace(msPattern, 'ms-'));\n}\n\nmodule.exports = camelizeStyleName;"]}