wbinnssmith / awesome-promises

A curated list of useful resources for JavaScript Promises
Creative Commons Zero v1.0 Universal
1.61k stars 124 forks source link

add rubico to other libraries #33

Open richytong opened 4 years ago

richytong commented 4 years ago

I believe rubico should make this list because rubico simplifies asynchronous programming in a functional way. For example, it would turn this

Promise.all(array.map(doSomethingAsync))

into this

map(doSomethingAsync)(array)