1
0
silverbullet/plugbox/src/util.ts
2022-03-07 10:21:02 +01:00

7 lines
119 B
TypeScript

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