Front end of the Slack clone application.

ignoreElements.js 547B

12345678910111213141516
  1. import { ignoreElements as higherOrder } from '../operators/ignoreElements';
  2. /**
  3. * Ignores all items emitted by the source Observable and only passes calls of `complete` or `error`.
  4. *
  5. * <img src="./img/ignoreElements.png" width="100%">
  6. *
  7. * @return {Observable} An empty Observable that only calls `complete`
  8. * or `error`, based on which one is called by the source Observable.
  9. * @method ignoreElements
  10. * @owner Observable
  11. */
  12. export function ignoreElements() {
  13. return higherOrder()(this);
  14. }
  15. ;
  16. //# sourceMappingURL=ignoreElements.js.map