Questions about the usage of pipe in the example of Angular6 official website

in the Angular official website instance, about the login section, you don"t quite understand the usage of pipe:

  login(): Observable<boolean> {
    return of(true).pipe(
      delay(1000),
      tap(val => this.isLoggedIn = true)
    );
  }

check the pipe usage of nodejs, rxjs, and angular itself, and it doesn"t match. Excuse me, can you help me with the answer?

Mar.26,2021

this pipe is the method in rxjs 6 , which is used to integrate various operators, but not if you are looking for rxjs below version 6. (the previous of is also a new usage starting with version 6)

Menu