mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
27 lines
628 B
TypeScript
27 lines
628 B
TypeScript
|
import chalk from "npm:chalk";
|
||
|
import process from "node:process";
|
||
|
|
||
|
console.log(chalk.red("Hello world!"));
|
||
|
|
||
|
globalThis.addEventListener("unhandledrejection", (e) => {
|
||
|
console.log('globalThis.addEventListener("unhandledrejection");');
|
||
|
e.preventDefault();
|
||
|
});
|
||
|
|
||
|
globalThis.addEventListener("rejectionhandled", (_) => {
|
||
|
console.log("Web rejectionhandled");
|
||
|
});
|
||
|
|
||
|
process.on("rejectionHandled", (_) => {
|
||
|
console.log("Node rejectionHandled");
|
||
|
});
|
||
|
|
||
|
const a = Promise.reject(1);
|
||
|
setTimeout(() => {
|
||
|
a.catch(() => console.log("Added catch handler to the promise"));
|
||
|
}, 10);
|
||
|
|
||
|
setTimeout(() => {
|
||
|
console.log("Success");
|
||
|
}, 50);
|