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;
|
||
|
});
|
||
|
}
|