Skip to content

Instantly share code, notes, and snippets.

@arnygora
Forked from ptesser/operators.ts
Created February 14, 2020 14:13
Show Gist options
  • Save arnygora/70b554440861a1fc3af42e0101f28bec to your computer and use it in GitHub Desktop.
Save arnygora/70b554440861a1fc3af42e0101f28bec to your computer and use it in GitHub Desktop.
RxJS operator functions
import { Observable } from 'rxjs';
import { filter } from 'rxjs/operators';
function inputIsNotNullOrUndefined<T>(input: null | undefined | T): input is T {
return input !== null && input !== undefined;
}
export function isNotNullOrUndefined<T>() {
return (source$: Observable<null | undefined | T>) =>
source$.pipe(
filter(inputIsNotNullOrUndefined)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment