simple-statistics
Advanced tools
Changelog
5.0.0 (2017-09-26)
This means:
jsnext:main
or module
fields of package.json, you'll likely automatically start using this feature. When you use simple-statistics as an ES6 module, import {min} from "simple-statistics"
and other imports of only a few of its methods will automatically do 'tree-shaking' and only pull in the parts you use (if your bundling tool supports tree-shaking)require('simple-statistics/min')
is deprecated and will not work. Its components are now written with ES6 syntax.<a name="4.1.1"></a>
Changelog
4.0.0 (2017-04-25)
<a name="3.0.0"></a>
Changelog
3.0.0 (2017-04-06)
Breaking change: before this release, simple-statistics would return NaN
when provided with invalid input. After 3.0.0, simple-statistics will throw
exceptions when provided with invalid input. If you previously used isNaN
to
test for these error cases, switch to using try
and catch
, or make sure
that valid input is given to simple-statistics.
<a name="2.5.0"></a>