{"version":3,"sources":["node_modules\\fbjs\\lib\\hyphenate.js"],"names":["_uppercasePattern","hyphenate","string","replace","toLowerCase","module","exports"],"mappings":"AAAA;;;;;;;;;;;;;AAaA,GAAIA,mBAAoB,UAAxB;;;;;;;;;;;;;;AAcA,QAASC,UAAT,CAAmBC,MAAnB,CAA2B;AACzB,MAAOA,QAAOC,OAAP,CAAeH,iBAAf,CAAkC,KAAlC,EAAyCI,WAAzC,EAAP;AACD;;AAEDC,OAAOC,OAAP,CAAiBL,SAAjB","file":"hyphenate.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 _uppercasePattern = /([A-Z])/g;\n\n/**\n * Hyphenates a camelcased string, for example:\n *\n *   > hyphenate('backgroundColor')\n *   < \"background-color\"\n *\n * For CSS style names, use `hyphenateStyleName` instead which works properly\n * with all vendor prefixes, including `ms`.\n *\n * @param {string} string\n * @return {string}\n */\nfunction hyphenate(string) {\n  return string.replace(_uppercasePattern, '-$1').toLowerCase();\n}\n\nmodule.exports = hyphenate;"]}