Package Exports
- atlas-sum
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (atlas-sum) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
atlas-sum
Calculate the sum of a set of data points.
install
npm install --save atlas-sum
why
Breaking up atlas-dataset into standalone functions. This module sums over an array of numbers:
examples
const sum = require("atlas-sum")
console.log(sum([1,2,3,4]))
// 10