continuable-para

1.2.0 • Public • Published

continuable-para

turn multiple continuables into one in parallel.

Example

handle an array.

para([
  continuable1,
  continuable2,
  continuable3
]) (function (err, ary) {
    console.log(ary)
    //[..,..,..]
  })

handle an array.

para({
  A: continuable1,
  B: continuable2,
  C: continuable3
}) (function (err, ary) {
    console.log(ary)
    //{A:.., B:..., C:...}
  })

trains form into array by default

para(cont1, cont2, cont3) (function (err, ary) {
  console.log(ary)
  //[....]
})

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i continuable-para

Weekly Downloads

54

Version

1.2.0

License

MIT

Last publish

Collaborators

  • dominictarr