1
0
silverbullet/plugos/util.ts
2022-03-27 11:31:12 +02:00

7 lines
119 B
TypeScript

export function safeRun(fn: () => Promise<void>) {
fn().catch((e) => {
// console.error(e);
throw e;
});
}