X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=node_modules%2Fgrunt-legacy-log-utils%2Fnode_modules%2Flodash%2FpickBy.js;fp=node_modules%2Fgrunt-legacy-log-utils%2Fnode_modules%2Flodash%2FpickBy.js;h=611859eff18f27c0325579357820e5dbc6a800ce;hp=0000000000000000000000000000000000000000;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad diff --git a/node_modules/grunt-legacy-log-utils/node_modules/lodash/pickBy.js b/node_modules/grunt-legacy-log-utils/node_modules/lodash/pickBy.js new file mode 100644 index 000000000..611859eff --- /dev/null +++ b/node_modules/grunt-legacy-log-utils/node_modules/lodash/pickBy.js @@ -0,0 +1,25 @@ +var baseIteratee = require('./_baseIteratee'), + basePickBy = require('./_basePickBy'); + +/** + * Creates an object composed of the `object` properties `predicate` returns + * truthy for. The predicate is invoked with two arguments: (value, key). + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {Function|Object|string} [predicate=_.identity] The function invoked per property. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pickBy(object, _.isNumber); + * // => { 'a': 1, 'c': 3 } + */ +function pickBy(object, predicate) { + return object == null ? {} : basePickBy(object, baseIteratee(predicate, 2)); +} + +module.exports = pickBy;