COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20201220222358/https://github.com/lodash/lodash/blob/master/sumBy.js
Permalink
Cannot retrieve contributors at this time
26 lines (24 sloc)
714 Bytes
import baseSum from './.internal/baseSum.js'
/**
* This method is like `sum` except that it accepts `iteratee` which is
* invoked for each element in `array` to generate the value to be summed.
* The iteratee is invoked with one argument: (value).
*
* @since 4.0.0
* @category Math
* @param {Array } array The array to iterate over.
* @param {Function } iteratee The iteratee invoked per element.
* @returns {number } Returns the sum.
* @example
*
* const objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }]
*
* sumBy(objects, ({ n }) => n)
* // => 20
*/
function sumBy ( array , iteratee ) {
return ( array != null && array . length )
? baseSum ( array , iteratee )
: 0
}
export default sumBy
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.