mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
11 lines
270 B
JavaScript
11 lines
270 B
JavaScript
globalThis.addEventListener("unhandledrejection", (e) => {
|
|
console.log("unhandled rejection at:", e.promise, "reason:", e.reason);
|
|
e.preventDefault();
|
|
});
|
|
|
|
function Foo() {
|
|
this.bar = Promise.reject(new Error("bar not available"));
|
|
}
|
|
|
|
new Foo();
|
|
Promise.reject();
|