mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
528 B
22 lines
528 B
9 years ago
|
var baseForIn = require('./_baseForIn');
|
||
|
|
||
|
/**
|
||
|
* The base implementation of `_.pickBy` without support for iteratee shorthands.
|
||
|
*
|
||
|
* @private
|
||
|
* @param {Object} object The source object.
|
||
|
* @param {Function} predicate The function invoked per property.
|
||
|
* @returns {Object} Returns the new object.
|
||
|
*/
|
||
|
function basePickBy(object, predicate) {
|
||
|
var result = {};
|
||
|
baseForIn(object, function(value, key) {
|
||
|
if (predicate(value, key)) {
|
||
|
result[key] = value;
|
||
|
}
|
||
|
});
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
module.exports = basePickBy;
|