Sha256: 83013470e39f512f7c510078bf572aa621ce07eb8fee584bc10618002089b7a2

Contents?: true

Size: 991 Bytes

Versions: 276

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

276 entries across 274 versions & 31 rubygems

Version Path
clapton-0.0.3 lib/clapton/javascripts/node_modules/lodash/maxBy.js
clapton-0.0.2 lib/clapton/javascripts/node_modules/lodash/maxBy.js
clapton-0.0.1 lib/clapton/javascripts/node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.47 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.46 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.45 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.44 node_modules/lodash/maxBy.js
boring_generators-0.14.0 tmp/templates/app_template/node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.43 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.42 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.41 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.40 node_modules/lodash/maxBy.js
sumomo-0.10.8 data/sumomo/api_modules/node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.39 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.38 node_modules/lodash/maxBy.js
optimacms-0.1.61 spec/dummy/node_modules/lodash/maxBy.js
boring_generators-0.13.0 tmp/templates/app_template/node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.32 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.31 node_modules/lodash/maxBy.js
immosquare-cleaner-0.1.30 node_modules/lodash/maxBy.js