561aa6891f
Big bang migration to Deno 🤯
8 lines
149 B
TypeScript
8 lines
149 B
TypeScript
export function safeRun(fn: () => Promise<void>) {
|
|
fn().catch((e: any) => {
|
|
console.error("Caught error", e.message);
|
|
|
|
// throw e;
|
|
});
|
|
}
|