ES6 Promises – something like async.each?

For those who like short answers:

[func1, func2].reduce((p, f) => p.then(f), Promise.resolve());

Leave a Comment