a zip code crypto-currency system good for red ONLY

12345678910111213141516171819
  1. /** PURE_IMPORTS_START .._operators_skipWhile PURE_IMPORTS_END */
  2. import { skipWhile as higherOrder } from '../operators/skipWhile';
  3. /**
  4. * Returns an Observable that skips all items emitted by the source Observable as long as a specified condition holds
  5. * true, but emits all further source items as soon as the condition becomes false.
  6. *
  7. * <img src="./img/skipWhile.png" width="100%">
  8. *
  9. * @param {Function} predicate - A function to test each item emitted from the source Observable.
  10. * @return {Observable<T>} An Observable that begins emitting items emitted by the source Observable when the
  11. * specified predicate becomes false.
  12. * @method skipWhile
  13. * @owner Observable
  14. */
  15. export function skipWhile(predicate) {
  16. return higherOrder(predicate)(this);
  17. }
  18. //# sourceMappingURL=skipWhile.js.map