Skip to content

hshn/rxjs-fp-operators

Repository files navigation

rxjs-fp-operators

Build Status NPM version

Installation

$ npm install --save rxjs-fp-operators

Operators

recoverWith

recoverWith<T, L>(recover: (error: any) => Observable<Either<L, T>>): OperatorFunction<T, Either<L, T>>

recover

recover<T, L>(selector: (error: any) => Either<L, T>): OperatorFunction<T, Either<L, T>>