%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/node_modules/lodash-es/
Upload File :
Create Path :
Current File : /var/www/html/node_modules/lodash-es/sum.js

import baseSum from './_baseSum.js';
import identity from './identity.js';

/**
 * Computes the sum of the values in `array`.
 *
 * @static
 * @memberOf _
 * @since 3.4.0
 * @category Math
 * @param {Array} array The array to iterate over.
 * @returns {number} Returns the sum.
 * @example
 *
 * _.sum([4, 2, 8, 6]);
 * // => 20
 */
function sum(array) {
  return (array && array.length)
    ? baseSum(array, identity)
    : 0;
}

export default sum;

Zerion Mini Shell 1.0