UNPKG

@prelude/function

Version:

Function module.

4 lines (3 loc) 181 B
/** Rescues thunk throwing an error with provided fallback function. */ declare const rescue: <T, U>(thunk: () => T, fallback: (err: unknown) => U) => T | U; export default rescue;