{"version":3,"sources":["node_modules\\fbjs\\lib\\hyphenateStyleName.js"],"names":["hyphenate","require","msPattern","hyphenateStyleName","string","replace","module","exports"],"mappings":";;;;;;;;;;;AAWA;;AAEA,GAAIA,WAAYC,QAAQ,aAAR,CAAhB;;AAEA,GAAIC,WAAY,MAAhB;;;;;;;;;;;;;;;;;;AAkBA,QAASC,mBAAT,CAA4BC,MAA5B,CAAoC;AAClC,MAAOJ,WAAUI,MAAV,EAAkBC,OAAlB,CAA0BH,SAA1B,CAAqC,MAArC,CAAP;AACD;;AAEDI,OAAOC,OAAP,CAAiBJ,kBAAjB","file":"hyphenateStyleName.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 hyphenate = require('./hyphenate');\n\nvar msPattern = /^ms-/;\n\n/**\n * Hyphenates a camelcased CSS property name, for example:\n *\n *   > hyphenateStyleName('backgroundColor')\n *   < \"background-color\"\n *   > hyphenateStyleName('MozTransition')\n *   < \"-moz-transition\"\n *   > hyphenateStyleName('msTransition')\n *   < \"-ms-transition\"\n *\n * As Modernizr suggests (http://modernizr.com/docs/#prefixed), an `ms` prefix\n * is converted to `-ms-`.\n *\n * @param {string} string\n * @return {string}\n */\nfunction hyphenateStyleName(string) {\n  return hyphenate(string).replace(msPattern, '-ms-');\n}\n\nmodule.exports = hyphenateStyleName;"]}