Sha256: 83013470e39f512f7c510078bf572aa621ce07eb8fee584bc10618002089b7a2

Contents?: true

Size: 991 Bytes

Versions: 265

Compression:

Stored size: 991 Bytes

Contents

var baseExtremum = require('./_baseExtremum'),
    baseGt = require('./_baseGt'),
    baseIteratee = require('./_baseIteratee');

/**
 * This method is like `_.max` except that it accepts `iteratee` which is
 * invoked for each element in `array` to generate the criterion by which
 * the value is ranked. The iteratee is invoked with one argument: (value).
 *
 * @static
 * @memberOf _
 * @since 4.0.0
 * @category Math
 * @param {Array} array The array to iterate over.
 * @param {Function} [iteratee=_.identity] The iteratee invoked per element.
 * @returns {*} Returns the maximum value.
 * @example
 *
 * var objects = [{ 'n': 1 }, { 'n': 2 }];
 *
 * _.maxBy(objects, function(o) { return o.n; });
 * // => { 'n': 2 }
 *
 * // The `_.property` iteratee shorthand.
 * _.maxBy(objects, 'n');
 * // => { 'n': 2 }
 */
function maxBy(array, iteratee) {
  return (array && array.length)
    ? baseExtremum(array, baseIteratee(iteratee, 2), baseGt)
    : undefined;
}

module.exports = maxBy;

Version data entries

265 entries across 263 versions & 30 rubygems

Version Path
appmap-0.71.0 ./node_modules/lodash/maxBy.js
disco_app-0.16.1 test/dummy/node_modules/lodash/maxBy.js
appmap-0.70.2 ./node_modules/lodash/maxBy.js
sumomo-0.8.14 data/sumomo/api_modules/node_modules/lodash/maxBy.js
appmap-0.70.1 ./node_modules/lodash/maxBy.js
appmap-0.70.0 ./node_modules/lodash/maxBy.js
appmap-0.69.0 ./node_modules/lodash/maxBy.js
sumomo-0.8.13 data/sumomo/api_modules/node_modules/lodash/maxBy.js
appmap-0.68.2 ./node_modules/lodash/maxBy.js
appmap-0.68.1 ./node_modules/lodash/maxBy.js
disco_app-0.15.2 test/dummy/node_modules/lodash/maxBy.js
appmap-0.68.0 ./node_modules/lodash/maxBy.js
appmap-0.67.1 ./node_modules/lodash/maxBy.js
trusty-cms-5.0.3 node_modules/lodash/maxBy.js
trusty-cms-5.0.2 node_modules/lodash/maxBy.js
appmap-0.67.0 ./node_modules/lodash/maxBy.js
disco_app-0.18.4 test/dummy/node_modules/lodash/maxBy.js
disco_app-0.18.1 test/dummy/node_modules/lodash/maxBy.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/lodash/maxBy.js
disco_app-0.14.0 test/dummy/node_modules/lodash/maxBy.js