El-gorithm
A Javascript Library for Data Manipulation. This library is exported as a UMD module.
Quick Setup and Usage
npm i -g el-gorithm (globally)
npm i --save el-gorithm (local project)
var el = require('el-gorithm');
...
var sortedList = el.mergeSort([3,5,2,6,4]); // [2,3,4,5,6]
Version
1.0.29
New in Version 1.0.29
Fixes
- Fixed issue with arrayMax( ... ) utility function.
- Fixed compare( ... ) function documentation.
- Updated functionality and documentation of accumulate( ... ) to add runningMean.
Testing
Run either 'npm test' or 'gulp' on command line after compiling .ts files to .js files.
API
-
API Walkthrough on Github
-
API Walkthrough on Runkit
Contribution
Any one that wants to help with anything from testing, expanding the scope of features to documentation should seek a request via the issue feature on Github.
Issues
Please report issues as you see them during usage. It will help improve this library as a whole. Thank you.
Credits
Algorithms 4th Edition by Robert Sedgewick and Kevin Wayne.