source: imaps-frontend/node_modules/lodash-es/max.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 612 bytes
Line 
1import baseExtremum from './_baseExtremum.js';
2import baseGt from './_baseGt.js';
3import identity from './identity.js';
4
5/**
6 * Computes the maximum value of `array`. If `array` is empty or falsey,
7 * `undefined` is returned.
8 *
9 * @static
10 * @since 0.1.0
11 * @memberOf _
12 * @category Math
13 * @param {Array} array The array to iterate over.
14 * @returns {*} Returns the maximum value.
15 * @example
16 *
17 * _.max([4, 2, 8, 6]);
18 * // => 8
19 *
20 * _.max([]);
21 * // => undefined
22 */
23function max(array) {
24 return (array && array.length)
25 ? baseExtremum(array, identity, baseGt)
26 : undefined;
27}
28
29export default max;
Note: See TracBrowser for help on using the repository browser.