Front end of the Slack clone application.

123456789101112131415161718
  1. /** PURE_IMPORTS_START .._operators_skip PURE_IMPORTS_END */
  2. import { skip as higherOrder } from '../operators/skip';
  3. /**
  4. * Returns an Observable that skips the first `count` items emitted by the source Observable.
  5. *
  6. * <img src="./img/skip.png" width="100%">
  7. *
  8. * @param {Number} count - The number of times, items emitted by source Observable should be skipped.
  9. * @return {Observable} An Observable that skips values emitted by the source Observable.
  10. *
  11. * @method skip
  12. * @owner Observable
  13. */
  14. export function skip(count) {
  15. return higherOrder(count)(this);
  16. }
  17. //# sourceMappingURL=skip.js.map