X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=node_modules%2Fgrunt-uncss%2Fnode_modules%2Flodash%2Funary.js;fp=node_modules%2Fgrunt-uncss%2Fnode_modules%2Flodash%2Funary.js;h=76f48f6e35fd52be81f4882d9f48d81f1886b478;hp=0000000000000000000000000000000000000000;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad diff --git a/node_modules/grunt-uncss/node_modules/lodash/unary.js b/node_modules/grunt-uncss/node_modules/lodash/unary.js new file mode 100644 index 000000000..76f48f6e3 --- /dev/null +++ b/node_modules/grunt-uncss/node_modules/lodash/unary.js @@ -0,0 +1,22 @@ +var ary = require('./ary'); + +/** + * Creates a function that accepts up to one argument, ignoring any + * additional arguments. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Function + * @param {Function} func The function to cap arguments for. + * @returns {Function} Returns the new capped function. + * @example + * + * _.map(['6', '8', '10'], _.unary(parseInt)); + * // => [6, 8, 10] + */ +function unary(func) { + return ary(func, 1); +} + +module.exports = unary;