Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How would I use `do` as an RxJS lettable operator?

RxJS 5.5 allows grabbing lettable operators and piping them like so:

import { ajax } from 'rxjs/observable/dom/ajax'
import { catchError, map, retry } from 'rxjs/operators'

ajax.getJSON('https://example.com/api/test')
.pipe(
    retry(3, 1000),
    map(fetchUserFulfilled),
    catchError(console.error)
)

How would I use the do operator between these commands?

like image 333
Kevin Ghadyani Avatar asked Feb 05 '23 02:02

Kevin Ghadyani


1 Answers

The do operator was renamed in RxJS 5.5 to tap because it collided with the JavaScript do keyword.

For more info see: https://github.com/ReactiveX/rxjs/blob/master/doc/pipeable-operators.md#pipeable-operators

like image 77
martin Avatar answered Feb 06 '23 14:02

martin