1.0.2 • Published 1 year ago

advanced_async-iterate v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

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