Files
lodash/internal/basePickBy.js
John-David Dalton d8d0500f37 Bump to v4.0.1.
2016-01-25 07:54:11 -08:00

22 lines
527 B
JavaScript

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;