Harshit Gupta
Harshit Gupta
Are you saying that `Promise.all` is better than `yield ` (as map returns array)? And also in `yield `, promises don't run in parallel? Thanks
Update: This solution has some unnecessary overhead. Please have a look at @DeShadow comment. It works perfectly fine with `.map`. For Example: `const result = yield array.map(x => task(x));` Where...
Awesome!!! Thanks a lot for pointing it out. I didn't know that. I am little bit confused about the error handling. I have `catch` CB with my version of `co`....
first of all, a big thanks to @jamesray1 for starting the thread. I am all up for constructive criticism. Here are my two cents. I have been following EOS for...
do we have any fix for it? I am also facing the same issue.