Y
Hacker News
new
|
ask
|
show
|
jobs
by
todd3834
3193 days ago
Wouldn’t this code only execute 1 promise at a time? I thought Promise.all allowed promises to be resolved in parallel
3 comments
theprotocol
3193 days ago
Indeed. You most likely should do `await Promise.all` and then do the reduction.
link
dvlsg
3193 days ago
If item is already a promise, and not a function returning a promise, they would be "executing" in parallel.
link
codefined
3193 days ago
Sorry, in the sense of being identical to the original code in the linked post (reduce), not the comment.
link