Skip to content

Instantly share code, notes, and snippets.

@ssougnez
Created March 13, 2021 22:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssougnez/26302c07ae549fdd0f95d46be278adc8 to your computer and use it in GitHub Desktop.
Save ssougnez/26302c07ae549fdd0f95d46be278adc8 to your computer and use it in GitHub Desktop.
import { Observable, of } from 'rxjs';
import { catchError } from 'rxjs/operators';
observable
.pipe(
catchError(err => of(-1))
)
.subscribe({
next: x => console.log(`${x} received`),
complete: () => console.log('Completed'),
error: err => console.warn(err)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment