This function turns a string-keyed record or object literal of
AsyncEitherLike
"inside out". For example:
Record<string, AsyncEither<E, T>>
becomes AsyncEither<E, Record<string, T>>
{ x: AsyncEither<E, T1>, y: AsyncEither<E, T2> }
becomes
AsyncEither<E, { x: T1, y: T2 }>
Generated using TypeDoc
Concurrently evaluate
Either
orAsyncEitherLike
in a string-keyed record or object literal and collect theRight
values in an equivalent structure.