Parameters
value: undefined | null | T
getDefaultValue: (() => T)
Returns T
Unchanged value if it's not null
or undefined
or the computed value
const foo: Partial<Record<string, string>> = { bar: 'baz' };
unwrapOrElse(foo.bar, () => 'qux'); // returns 'baz'
unwrapOrElse(foo.bat, () => 'qux'); // returns 'qux'
Returns the value if it's not
null
orundefined
, or computes it