Javascript – Promise.allSettled with timing for each call
Is there a technique or javascript library to effectively perform the equivalent of Promises.allSettled([Array of tasks]); and access the number of milliseconds each task took? For example, if I make 5 concurrent API calls to remote services, I'd like to…