Thanks to visit codestin.com
Credit goes to github.com

Skip to content

dominictarr/continuable-para

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •