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