advanced_async-iterate
v1.0.2
Published
Advanced Async Iterate is a JavaScript library that simplifies the handling of arrays. You can now execute asynchronous functions in interactions like forEach or map!
Downloads
1
Maintainers
Readme
Async Iterate
Advanced Async Iterate is a JavaScript library that simplifies the handling of arrays. You can now execute asynchronous functions in interactions like forEach or map!
Example Usage
Please note that this example doesn't use async functions!
const each = require('advanced_async-iterate')
const result = await each.each([ 1, 2, 3, 4 ], map = async (value) => {
return value += 1
}, map = async (value) => {
return value *= 2
})
console.log(result) // [ 4, 6, 8, 10 ]
Implemented Array Functions
- forEach
- every
- map
- filter