{"version":3,"file":"mapValues-B3El4_xQ.js","sources":["../../../node_modules/lodash/mapValues.js"],"sourcesContent":["var baseAssignValue = require('./_baseAssignValue'),\n baseForOwn = require('./_baseForOwn'),\n baseIteratee = require('./_baseIteratee');\n\n/**\n * Creates an object with the same keys as `object` and values generated\n * by running each own enumerable string keyed property of `object` thru\n * `iteratee`. The iteratee is invoked with three arguments:\n * (value, key, object).\n *\n * @static\n * @memberOf _\n * @since 2.4.0\n * @category Object\n * @param {Object} object The object to iterate over.\n * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n * @returns {Object} Returns the new mapped object.\n * @see _.mapKeys\n * @example\n *\n * var users = {\n * 'fred': { 'user': 'fred', 'age': 40 },\n * 'pebbles': { 'user': 'pebbles', 'age': 1 }\n * };\n *\n * _.mapValues(users, function(o) { return o.age; });\n * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed)\n *\n * // The `_.property` iteratee shorthand.\n * _.mapValues(users, 'age');\n * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed)\n */\nfunction mapValues(object, iteratee) {\n var result = {};\n iteratee = baseIteratee(iteratee, 3);\n\n baseForOwn(object, function(value, key, object) {\n baseAssignValue(result, key, iteratee(value, key, object));\n });\n return result;\n}\n\nmodule.exports = mapValues;\n"],"names":["baseAssignValue","require$$0","baseForOwn","require$$1","baseIteratee","require$$2","mapValues","object","iteratee","result","value","key","mapValues_1"],"mappings":"yLAAA,IAAIA,EAAkBC,EAA6B,EAC/CC,EAAaC,EAAwB,EACrCC,EAAeC,EAA0B,EA8B7C,SAASC,EAAUC,EAAQC,EAAU,CACnC,IAAIC,EAAS,CAAE,EACf,OAAAD,EAAWJ,EAAaI,EAAU,CAAC,EAEnCN,EAAWK,EAAQ,SAASG,EAAOC,EAAKJ,EAAQ,CAC9CP,EAAgBS,EAAQE,EAAKH,EAASE,EAAOC,EAAKJ,CAAM,CAAC,CAC7D,CAAG,EACME,CACT,CAEA,OAAAG,EAAiBN","x_google_ignoreList":[0]}