> Arrays, objects and strings iterator
each-reverseeach-reverse - module for reverse iterations
each-reverseeach-reverse - module for reverse iterations
Install
npm install --save ea
component install andrepolischuk/ea
API
ea(array, fn)
Iterate arrayea([10, 11, 12], function(value, index) {
});
ea(object, fn)
Iterate objectea(user, function(value, key) {
});
ea(string, fn)
Iterate stringea('hello', function(value, key) {
});