initial status

This commit is contained in:
Simon Priet
2021-09-05 12:34:08 +02:00
commit a041f9f575
9441 changed files with 627158 additions and 0 deletions

22
node_modules/ramda/es/sum.js generated vendored Normal file
View File

@@ -0,0 +1,22 @@
import add from "./add.js";
import reduce from "./reduce.js";
/**
* Adds together all the elements of a list.
*
* @func
* @memberOf R
* @since v0.1.0
* @category Math
* @sig [Number] -> Number
* @param {Array} list An array of numbers
* @return {Number} The sum of all the numbers in the list.
* @see R.reduce
* @example
*
* R.sum([2,4,6,8,100,1]); //=> 121
*/
var sum =
/*#__PURE__*/
reduce(add, 0);
export default sum;