Front end of the Slack clone application.

ignoreElements.js 619B

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