{"version":3,"file":"startCase-CVgwnnSS.js","sources":["../../../node_modules/lodash-es/fromPairs.js","../../../node_modules/lodash-es/startCase.js"],"sourcesContent":["/**\n * The inverse of `_.toPairs`; this method returns an object composed\n * from key-value `pairs`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Array\n * @param {Array} pairs The key-value pairs.\n * @returns {Object} Returns the new object.\n * @example\n *\n * _.fromPairs([['a', 1], ['b', 2]]);\n * // => { 'a': 1, 'b': 2 }\n */\nfunction fromPairs(pairs) {\n var index = -1,\n length = pairs == null ? 0 : pairs.length,\n result = {};\n\n while (++index < length) {\n var pair = pairs[index];\n result[pair[0]] = pair[1];\n }\n return result;\n}\n\nexport default fromPairs;\n","import createCompounder from './_createCompounder.js';\nimport upperFirst from './upperFirst.js';\n\n/**\n * Converts `string` to\n * [start case](https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage).\n *\n * @static\n * @memberOf _\n * @since 3.1.0\n * @category String\n * @param {string} [string=''] The string to convert.\n * @returns {string} Returns the start cased string.\n * @example\n *\n * _.startCase('--foo-bar--');\n * // => 'Foo Bar'\n *\n * _.startCase('fooBar');\n * // => 'Foo Bar'\n *\n * _.startCase('__FOO_BAR__');\n * // => 'FOO BAR'\n */\nvar startCase = createCompounder(function(result, word, index) {\n return result + (index ? ' ' : '') + upperFirst(word);\n});\n\nexport default startCase;\n"],"names":["fromPairs","pairs","index","length","result","pair","startCase","createCompounder","word","upperFirst"],"mappings":"2FAeA,SAASA,EAAUC,EAAO,CAKxB,QAJIC,EAAQ,GACRC,EAASF,GAAS,KAAO,EAAIA,EAAM,OACnCG,EAAS,CAAE,EAER,EAAEF,EAAQC,GAAQ,CACvB,IAAIE,EAAOJ,EAAMC,CAAK,EACtBE,EAAOC,EAAK,CAAC,CAAC,EAAIA,EAAK,CAAC,CAC5B,CACE,OAAOD,CACT,CCDG,IAACE,EAAYC,EAAiB,SAASH,EAAQI,EAAMN,EAAO,CAC7D,OAAOE,GAAUF,EAAQ,IAAM,IAAMO,EAAWD,CAAI,CACtD,CAAC","x_google_ignoreList":[0,1]}