UNPKG

equation-sdk

Version:

🛠 An SDK for building applications on top of Equation.

9 lines (8 loc) • 167 B
export function catchFn<T, U>(func: () => T, defaultValue: U): T | U { try { const result = func(); return result; } catch (error) { return defaultValue; } }