Pacote
    Preparing search index...

    Function ofPromise

    • Creates a new instance of Promise<Result<T, Error>> based on whether the provided promise resolves or not.

      Type Parameters

      • T

        Resolved type of the promise on success.

      • E extends Error

        Rejected type of the promise on failure.

      Parameters

      • promise: Promise<T>

        Unresolved promise.

      Returns Promise<Result<T, E>>

      If it resolves, a Promise of Ok with the resolved value is returned. Otherwise, a Promise of Err with the rejection error is returned. In either case, the newly returned promise will always resolve.