math-helpers
v0.1.0
Published
Tiny statistics helper lib. Robust and fast.
Downloads
140
Maintainers
Readme
math-helpers
Tiny statistics helper lib. Robust and fast.
Installation
npm install math-helpers
Usage
var math = require('math-helpers')(/* optional options */)
var avg = math.avg([1, 2, 3])
Options
You can pass some options to the module.
{
precision: 3 // results will be rounded to this number of decimals
}