UNPKG

@prelude/function

Version:

Function module.

8 lines (7 loc) 229 B
/** * Mutes thunk throwing an error. * * @returns `defaultValue` if `thunk` throws, otherwise returns the return value of `thunk`. */ declare const mute: <T, U>(thunk: () => T, defaultValue: U) => T | U; export default mute;