mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
584 B
29 lines
584 B
9 years ago
|
var baseExtremum = require('./_baseExtremum'),
|
||
|
gt = require('./gt'),
|
||
|
identity = require('./identity');
|
||
|
|
||
|
/**
|
||
|
* Computes the maximum value of `array`. If `array` is empty or falsey
|
||
|
* `undefined` is returned.
|
||
|
*
|
||
|
* @static
|
||
|
* @memberOf _
|
||
|
* @category Math
|
||
|
* @param {Array} array The array to iterate over.
|
||
|
* @returns {*} Returns the maximum value.
|
||
|
* @example
|
||
|
*
|
||
|
* _.max([4, 2, 8, 6]);
|
||
|
* // => 8
|
||
|
*
|
||
|
* _.max([]);
|
||
|
* // => undefined
|
||
|
*/
|
||
|
function max(array) {
|
||
|
return (array && array.length)
|
||
|
? baseExtremum(array, identity, gt)
|
||
|
: undefined;
|
||
|
}
|
||
|
|
||
|
module.exports = max;
|