1
0
silverbullet/plugbox/src/util.ts

7 lines
119 B
TypeScript
Raw Normal View History

2022-03-04 10:21:11 +00:00
export function safeRun(fn: () => Promise<void>) {
fn().catch((e) => {
2022-03-07 09:21:02 +00:00
// console.error(e);
throw e;
2022-03-04 10:21:11 +00:00
});
}