Andreas Krut

Results 1 comments of Andreas Krut

Alternatively there is [`RTE.rightReader`](https://github.com/gcanti/fp-ts/blob/master/src/ReaderTaskEither.ts#L142) where the default error type is `never` such that TS can do the job. ```ts pipe( getSausage(length), RTE.rightReader, RTE.chainW(eatSausage) ) ```