|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
453 bytes
|
| Line | |
|---|
| 1 | var baseSum = require('./_baseSum'),
|
|---|
| 2 | identity = require('./identity');
|
|---|
| 3 |
|
|---|
| 4 | /**
|
|---|
| 5 | * Computes the sum of the values in `array`.
|
|---|
| 6 | *
|
|---|
| 7 | * @static
|
|---|
| 8 | * @memberOf _
|
|---|
| 9 | * @since 3.4.0
|
|---|
| 10 | * @category Math
|
|---|
| 11 | * @param {Array} array The array to iterate over.
|
|---|
| 12 | * @returns {number} Returns the sum.
|
|---|
| 13 | * @example
|
|---|
| 14 | *
|
|---|
| 15 | * _.sum([4, 2, 8, 6]);
|
|---|
| 16 | * // => 20
|
|---|
| 17 | */
|
|---|
| 18 | function sum(array) {
|
|---|
| 19 | return (array && array.length)
|
|---|
| 20 | ? baseSum(array, identity)
|
|---|
| 21 | : 0;
|
|---|
| 22 | }
|
|---|
| 23 |
|
|---|
| 24 | module.exports = sum;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.