24 lines
573 B
JavaScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
import { sumBy } from "./sumBy.mjs";
//#region src/compat/math/sum.ts
/**
* Computes the sum of the values that are returned by the `iteratee` function.
*
* It does not coerce values to `number`.
*
* @param {ArrayLike<any> | null | undefined} array - The array to iterate over.
* @returns {number} Returns the sum.
*
* @example
* sum([1, 2, 3]); // => 6
* sum([1n, 2n, 3n]); // => 6n
* sum(["1", "2"]); // => "12"
* sum([1, undefined, 2]); // => 3
* sum(null); // => 0
* sum(undefined); // => 0
*/
function sum(array) {
return sumBy(array);
}
//#endregion
export { sum };