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%2FomitBy.js;fp=node_modules%2Fgrunt-legacy-log-utils%2Fnode_modules%2Flodash%2FomitBy.js;h=d7d045354b41082b5223a346e795b4acfcd8cbab;hp=0000000000000000000000000000000000000000;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad diff --git a/node_modules/grunt-legacy-log-utils/node_modules/lodash/omitBy.js b/node_modules/grunt-legacy-log-utils/node_modules/lodash/omitBy.js new file mode 100644 index 000000000..d7d045354 --- /dev/null +++ b/node_modules/grunt-legacy-log-utils/node_modules/lodash/omitBy.js @@ -0,0 +1,29 @@ +var baseIteratee = require('./_baseIteratee'), + basePickBy = require('./_basePickBy'); + +/** + * The opposite of `_.pickBy`; this method creates an object composed of the + * own and inherited enumerable properties of `object` that `predicate` + * doesn't return truthy for. + * + * @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 }; + * + * _.omitBy(object, _.isNumber); + * // => { 'b': '2' } + */ +function omitBy(object, predicate) { + predicate = baseIteratee(predicate, 2); + return basePickBy(object, function(value, key) { + return !predicate(value, key); + }); +} + +module.exports = omitBy;