mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 23:37:49 +00:00
Add _.mapKeys. [closes #169]
This commit is contained in:
@@ -3600,6 +3600,28 @@
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a function for `_.mapKeys` or `_.mapValues`.
|
||||
*
|
||||
* @private
|
||||
* @param {boolean} [isMapKeys] Specify mapping keys instead of values.
|
||||
* @returns {Function} Returns the new map function.
|
||||
*/
|
||||
function createObjectMapper(isMapKeys) {
|
||||
return function(object, iteratee, thisArg) {
|
||||
var result = {};
|
||||
iteratee = getCallback(iteratee, thisArg, 3);
|
||||
|
||||
baseForOwn(object, function(value, key, object) {
|
||||
var mapped = iteratee(value, key, object);
|
||||
key = isMapKeys ? mapped : key;
|
||||
value = isMapKeys ? value : mapped;
|
||||
result[key] = value;
|
||||
});
|
||||
return result;
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a function for `_.padLeft` or `_.padRight`.
|
||||
*
|
||||
@@ -9782,6 +9804,28 @@
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* The opposite of `_.mapValues`; this method creates an object with the
|
||||
* same values as `object` and keys generated by running each own enumerable
|
||||
* property of `object` through `iteratee`.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
* @category Object
|
||||
* @param {Object} object The object to iterate over.
|
||||
* @param {Function|Object|string} [iteratee=_.identity] The function invoked
|
||||
* per iteration.
|
||||
* @param {*} [thisArg] The `this` binding of `iteratee`.
|
||||
* @returns {Object} Returns the new mapped object.
|
||||
* @example
|
||||
*
|
||||
* _.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) {
|
||||
* return key + value;
|
||||
* });
|
||||
* // => { 'a1': 1, 'b2': 2 }
|
||||
*/
|
||||
var mapKeys = createObjectMapper(true);
|
||||
|
||||
/**
|
||||
* Creates an object with the same keys as `object` and values generated by
|
||||
* running each own enumerable property of `object` through `iteratee`. The
|
||||
@@ -9823,15 +9867,7 @@
|
||||
* _.mapValues(users, 'age');
|
||||
* // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed)
|
||||
*/
|
||||
function mapValues(object, iteratee, thisArg) {
|
||||
var result = {};
|
||||
iteratee = getCallback(iteratee, thisArg, 3);
|
||||
|
||||
baseForOwn(object, function(value, key, object) {
|
||||
result[key] = iteratee(value, key, object);
|
||||
});
|
||||
return result;
|
||||
}
|
||||
var mapValues = createObjectMapper();
|
||||
|
||||
/**
|
||||
* Recursively merges own enumerable properties of the source object(s), that
|
||||
@@ -11931,6 +11967,7 @@
|
||||
lodash.keys = keys;
|
||||
lodash.keysIn = keysIn;
|
||||
lodash.map = map;
|
||||
lodash.mapKeys = mapKeys;
|
||||
lodash.mapValues = mapValues;
|
||||
lodash.matches = matches;
|
||||
lodash.matchesProperty = matchesProperty;
|
||||
|
||||
155
test/test.js
155
test/test.js
@@ -2883,6 +2883,17 @@
|
||||
}
|
||||
});
|
||||
|
||||
test('`_.mapKeys` should use `_.callback` internally', 1, function() {
|
||||
if (!isModularize) {
|
||||
_.callback = getPropB;
|
||||
deepEqual(_.mapKeys({ 'a': { 'b': 1 } }), { '1': { 'b': 1 } });
|
||||
_.callback = callback;
|
||||
}
|
||||
else {
|
||||
skipTest();
|
||||
}
|
||||
});
|
||||
|
||||
test('`_.mapValues` should use `_.callback` internally', 1, function() {
|
||||
if (!isModularize) {
|
||||
_.callback = getPropB;
|
||||
@@ -5345,6 +5356,7 @@
|
||||
'groupBy',
|
||||
'indexBy',
|
||||
'map',
|
||||
'mapKeys',
|
||||
'mapValues',
|
||||
'max',
|
||||
'min',
|
||||
@@ -5405,6 +5417,7 @@
|
||||
'forInRight',
|
||||
'forOwn',
|
||||
'forOwnRight',
|
||||
'mapKeys',
|
||||
'mapValues',
|
||||
'omit',
|
||||
'pick'
|
||||
@@ -9428,6 +9441,46 @@
|
||||
strictEqual(_.collect, _.map);
|
||||
});
|
||||
}());
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
QUnit.module('lodash.mapKeys');
|
||||
|
||||
(function() {
|
||||
var array = [1, 2],
|
||||
object = { 'a': 1, 'b': 2, 'c': 3 };
|
||||
|
||||
test('should map keys in `object` to a new object', 1, function() {
|
||||
var actual = _.mapKeys(object, String);
|
||||
deepEqual(actual, { '1': 1, '2': 2, '3': 3 });
|
||||
});
|
||||
|
||||
test('should treat arrays like objects', 1, function() {
|
||||
var actual = _.mapKeys(array, String);
|
||||
deepEqual(actual, { '1': 1, '2': 2 });
|
||||
});
|
||||
|
||||
test('should support the `thisArg` argument', 2, function() {
|
||||
function callback(num, key) {
|
||||
return this[key] + num
|
||||
}
|
||||
|
||||
var actual = _.mapKeys({ 'a': 1 }, callback, { 'a': 2 });
|
||||
deepEqual(actual, { '3': 1 });
|
||||
|
||||
actual = _.mapKeys([2], callback, [1]);
|
||||
deepEqual(actual, { '3': 2 });
|
||||
});
|
||||
|
||||
test('should work with a "_.property" style `iteratee`', 1, function() {
|
||||
var actual = _.mapKeys({ 'a': { 'b': 'c' } }, 'b');
|
||||
deepEqual(actual, { 'c': { 'b': 'c' } });
|
||||
});
|
||||
|
||||
test('should work on an object with no `iteratee`', 1, function() {
|
||||
var actual = _.mapKeys({ 'a': 1, 'b': 2, 'c': 3 });
|
||||
deepEqual(actual, { '1': 1, '2': 2, '3': 3 });
|
||||
});
|
||||
}());
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
@@ -9447,6 +9500,59 @@
|
||||
deepEqual(actual, { '0': '1', '1': '2' });
|
||||
});
|
||||
|
||||
test('should support the `thisArg` argument', 2, function() {
|
||||
function callback(num, key) {
|
||||
return this[key] + num;
|
||||
}
|
||||
|
||||
var actual = _.mapValues({ 'a': 1 }, callback, { 'a': 2 });
|
||||
deepEqual(actual, { 'a': 3 });
|
||||
|
||||
actual = _.mapValues([2], callback, [1]);
|
||||
deepEqual(actual, { '0': 3 });
|
||||
});
|
||||
|
||||
test('should work with a "_.property" style `iteratee`', 1, function() {
|
||||
var actual = _.mapValues({ 'a': { 'b': 1 } }, 'b');
|
||||
deepEqual(actual, { 'a': 1 });
|
||||
});
|
||||
|
||||
test('should work on an object with no `iteratee`', 2, function() {
|
||||
var actual = _.mapValues({ 'a': 1, 'b': 2, 'c': 3 });
|
||||
deepEqual(actual, object);
|
||||
notStrictEqual(actual, object);
|
||||
});
|
||||
}());
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
QUnit.module('lodash.mapKeys and lodash.mapValues');
|
||||
|
||||
_.each(['mapKeys', 'mapValues'], function(methodName) {
|
||||
var array = [1, 2],
|
||||
func = _[methodName],
|
||||
object = { 'a': 1, 'b': 2, 'c': 3 };
|
||||
|
||||
test('should iterate over own properties of objects', 1, function() {
|
||||
function Foo() { this.a = 'a'; }
|
||||
Foo.prototype.b = 'b';
|
||||
|
||||
var actual = func(new Foo, function(value, key) { return key; });
|
||||
deepEqual(actual, { 'a': 'a' });
|
||||
});
|
||||
|
||||
test('should accept a falsey `object` argument', 1, function() {
|
||||
var expected = _.map(falsey, _.constant({}));
|
||||
|
||||
var actual = _.map(falsey, function(value, index) {
|
||||
try {
|
||||
return index ? func(value) : func();
|
||||
} catch(e) {}
|
||||
});
|
||||
|
||||
deepEqual(actual, expected);
|
||||
});
|
||||
|
||||
test('should provide the correct `iteratee` arguments', 2, function() {
|
||||
_.each([object, array], function(value, index) {
|
||||
var args;
|
||||
@@ -9459,58 +9565,15 @@
|
||||
});
|
||||
});
|
||||
|
||||
test('should support the `thisArg` argument', 2, function() {
|
||||
function callback(num, key) {
|
||||
return this[key] + num;
|
||||
}
|
||||
|
||||
var actual = _.mapValues({ 'a': 1 }, callback, { 'a': 2 });
|
||||
deepEqual(actual, { 'a': 3 });
|
||||
|
||||
actual = _.mapValues([1], callback, [2]);
|
||||
deepEqual(actual, { '0': 3 });
|
||||
});
|
||||
|
||||
test('should work with a "_.property" style `iteratee`', 1, function() {
|
||||
var actual = _.mapValues({ 'a': { 'b': 1 } }, 'b');
|
||||
deepEqual(actual, { 'a': 1 });
|
||||
});
|
||||
|
||||
test('should iterate over own properties of objects', 1, function() {
|
||||
function Foo() { this.a = 1; }
|
||||
Foo.prototype.b = 2;
|
||||
|
||||
var actual = _.mapValues(new Foo, function(value, key) { return key; });
|
||||
deepEqual(actual, { 'a': 'a' });
|
||||
});
|
||||
|
||||
test('should work on an object with no `iteratee`', 2, function() {
|
||||
var actual = _.mapValues({ 'a': 1, 'b': 2, 'c': 3 });
|
||||
deepEqual(actual, object);
|
||||
notStrictEqual(actual, object);
|
||||
});
|
||||
|
||||
test('should accept a falsey `object` argument', 1, function() {
|
||||
var expected = _.map(falsey, _.constant({}));
|
||||
|
||||
var actual = _.map(falsey, function(value, index) {
|
||||
try {
|
||||
return index ? _.mapValues(value) : _.mapValues();
|
||||
} catch(e) {}
|
||||
});
|
||||
|
||||
deepEqual(actual, expected);
|
||||
});
|
||||
|
||||
test('should return a wrapped value when chaining', 1, function() {
|
||||
if (!isNpm) {
|
||||
ok(_(object).mapValues(_.noop) instanceof _);
|
||||
ok(_(object)[methodName](_.noop) instanceof _);
|
||||
}
|
||||
else {
|
||||
skipTest();
|
||||
}
|
||||
});
|
||||
}());
|
||||
});
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
@@ -17451,7 +17514,7 @@
|
||||
|
||||
var acceptFalsey = _.difference(allMethods, rejectFalsey);
|
||||
|
||||
test('should accept falsey arguments', 217, function() {
|
||||
test('should accept falsey arguments', 218, function() {
|
||||
var emptyArrays = _.map(falsey, _.constant([])),
|
||||
isExposed = '_' in root,
|
||||
oldDash = root._;
|
||||
|
||||
Reference in New Issue
Block a user