I got bitten today by a nasty #JavaScript thing:
const handler = async () => { try { return request(); } catch (err) { // I wanted to handle request errors here // but since request returns a promise // they won't get caught } };
Response: 1070735293706309632