itbl
A collection of javascript utility functions designed to unlock the full potential of the es6 iterable protocol.
The libary will run in es5 environments and supports poly/ponyfilled implementations of iterators.
Getting Started
To install with npm
$ npm install itbl
Then using Node.js or Browserify.
let itbl = require('itbl');
var map = require('itbl/map');
var wrap = require('itbl/wrap');
Dependancies
The libary current has lodash as a dependancy. In Node.js or Browserify make sure lodash is installed as a dependancy of your project.
$ npm install lodash
Built With
Contributing
Contributions are welcome, style guide has not been written yet but will look very similar to lodash's contributing guidelines.
Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
Authors
License
This project is licensed under the MIT License - see the LICENSE.md file for details
Acknowledgments
- This libary was inspired by lodash and the documentation style was heavily influenced by the documentation of lodash.