X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=node_modules%2Fgrunt-legacy-log%2Fnode_modules%2Flodash%2Futility%2Fidentity.js;fp=node_modules%2Fgrunt-legacy-log%2Fnode_modules%2Flodash%2Futility%2Fidentity.js;h=3a1d1d4c9cf78b75f042fe32af4d9002eae2dcf5;hp=0000000000000000000000000000000000000000;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad diff --git a/node_modules/grunt-legacy-log/node_modules/lodash/utility/identity.js b/node_modules/grunt-legacy-log/node_modules/lodash/utility/identity.js new file mode 100644 index 000000000..3a1d1d4c9 --- /dev/null +++ b/node_modules/grunt-legacy-log/node_modules/lodash/utility/identity.js @@ -0,0 +1,20 @@ +/** + * This method returns the first argument provided to it. + * + * @static + * @memberOf _ + * @category Utility + * @param {*} value Any value. + * @returns {*} Returns `value`. + * @example + * + * var object = { 'user': 'fred' }; + * + * _.identity(object) === object; + * // => true + */ +function identity(value) { + return value; +} + +module.exports = identity;