Pacote
    Preparing search index...

    Function ofNullable

    • Creates a new instance of Result based on the value being passed.

      Type Parameters

      • T

        Resolved type of the promise on success.

      • E

        Rejected type of the promise on failure.

      Parameters

      • error: E

        Error to wrap if the provided value is null.

      • value: T

        Value to wrap, unless it's null.

      Returns Result<T, E>

      If null or undefined, it returns Err(error). Otherwise, it returns Ok(value).