Function unwrapOrElse

  • Returns the value if it's not null or undefined, or computes it

    Type Parameters

    • T

    Parameters

    • value: undefined | null | T

      Target value

    • getDefaultValue: (() => T)
        • (): T
        • Returns 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'

Generated using TypeDoc