You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
try {
throw new AggregateError([
new Error("Error 1"),
new Error("Error 2"),
new Error("Error 3")
], "Something went wrong with multiple errors");
} catch (e) {
console.log(e.message); // "Something went wrong with multiple errors"
for (const err of e.errors) {
console.log(err.message);
}
}
i just cloned the repo and installed the libs and run the server
??
The text was updated successfully, but these errors were encountered: