mirror of
https://github.com/denoland/deno.git
synced 2025-02-02 12:50:43 -05:00
12 lines
270 B
JavaScript
12 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();
|