This function turns a string-keyed record or object literal of Maybe
or
AsyncMaybeLike
"inside out". For example:
Record<string, AsyncMaybe<T>>
becomes AsyncMaybe<Record<string, T>>
{ x: AsyncMaybe<T1>, y: AsyncMaybe<T2> }
becomes AsyncMaybe<{ x: T1, y: T2 }>
Generated using TypeDoc
Concurrently evaluate the
Maybe
orAsyncMaybeLike
in a string-keyed record or object literal and collect theJust
values in an equivalent structure.