Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
52 lines (49 sloc)
1.35 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var arraySum = require('../internal/arraySum'), | |
| baseCallback = require('../internal/baseCallback'), | |
| baseSum = require('../internal/baseSum'), | |
| isArray = require('../lang/isArray'), | |
| isIterateeCall = require('../internal/isIterateeCall'), | |
| toIterable = require('../internal/toIterable'); | |
| /** | |
| * Gets the sum of the values in `collection`. | |
| * | |
| * @static | |
| * @memberOf _ | |
| * @category Math | |
| * @param {Array|Object|string} collection The collection to iterate over. | |
| * @param {Function|Object|string} [iteratee] The function invoked per iteration. | |
| * @param {*} [thisArg] The `this` binding of `iteratee`. | |
| * @returns {number} Returns the sum. | |
| * @example | |
| * | |
| * _.sum([4, 6]); | |
| * // => 10 | |
| * | |
| * _.sum({ 'a': 4, 'b': 6 }); | |
| * // => 10 | |
| * | |
| * var objects = [ | |
| * { 'n': 4 }, | |
| * { 'n': 6 } | |
| * ]; | |
| * | |
| * _.sum(objects, function(object) { | |
| * return object.n; | |
| * }); | |
| * // => 10 | |
| * | |
| * // using the `_.property` callback shorthand | |
| * _.sum(objects, 'n'); | |
| * // => 10 | |
| */ | |
| function sum(collection, iteratee, thisArg) { | |
| if (thisArg && isIterateeCall(collection, iteratee, thisArg)) { | |
| iteratee = null; | |
| } | |
| var noIteratee = iteratee == null; | |
| iteratee = noIteratee ? iteratee : baseCallback(iteratee, thisArg, 3); | |
| return noIteratee | |
| ? arraySum(isArray(collection) ? collection : toIterable(collection)) | |
| : baseSum(collection, iteratee); | |
| } | |
| module.exports = sum; |