00:02 | <littledan> | https://docs.google.com/document/d/1oPJj7k0txm0p54lKQ0ngS8ifEU1WGDhyKLbZmpfckJg/edit This is a good writeup. It should probably also speak to the issue Andreu raised above: when you call .then(cb) and get a new promise, or when you do an await inside of an async function with no catch, the resulting promise is the one which has the unhandled rejection, and its rejection site is the one that is used. In those two cases, the rejection site is the place is the same as the creation site. |