promise-count
Come in handy a few times; an alternative to `Promise.all` but without the fail-fast behaviour ```js const promise1 = new Promise((resolve, reject) => setTimeout(() => reject(1), 5000)) const promise2 = new Promise((resolve, reject) => resolve(2)) promise