Sha256: 83013470e39f512f7c510078bf572aa621ce07eb8fee584bc10618002089b7a2

Contents?: true

Size: 991 Bytes

Versions: 274

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

274 entries across 272 versions & 30 rubygems

Version Path
immosquare-cleaner-0.1.60 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.59 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.58 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.57 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.56 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.55 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.54 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.53 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.52 node_modules/lodash/maxBy.js
trusty-cms-6.3.1 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.51 node_modules/lodash/maxBy.js
boring_generators-0.15.0 tmp/templates/app_template/node_modules/lodash/maxBy.js
clapton-0.0.26 lib/clapton/javascripts/node_modules/lodash/maxBy.js
clapton-0.0.25 lib/clapton/javascripts/node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.50 node_modules/lodash/maxBy.js
clapton-0.0.24 lib/clapton/javascripts/node_modules/lodash/maxBy.js
clapton-0.0.23 lib/clapton/javascripts/node_modules/lodash/maxBy.js
clapton-0.0.22 lib/clapton/javascripts/node_modules/lodash/maxBy.js
clapton-0.0.21 lib/clapton/javascripts/node_modules/lodash/maxBy.js
clapton-0.0.20 lib/clapton/javascripts/node_modules/lodash/maxBy.js