IfObservable.js 245 B

1234567
  1. import { Observable, iif } from 'rxjs';
  2. export class IfObservable extends Observable {
  3. static create(condition, thenSource, elseSource) {
  4. return iif(condition, thenSource, elseSource);
  5. }
  6. }
  7. //# sourceMappingURL=IfObservable.js.map