Introducing "unwrapOr" method for ResultAsync
The previous release introduced a super handy method for unwrapping Result<T, E> into a T in a typesafe way.
This release introduces the same unwrapOr method, but for ResultAsync<T, E>!
ResultAsync<T, E>.unwrapOr(defaultValue: T) => Promise<T>Thanks to @paduc for opening up the PR!