Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

16 строки
451 B

  1. "use strict";
  2. var isEmpty_1 = require('../operators/isEmpty');
  3. /**
  4. * If the source Observable is empty it returns an Observable that emits true, otherwise it emits false.
  5. *
  6. * <img src="./img/isEmpty.png" width="100%">
  7. *
  8. * @return {Observable} An Observable that emits a Boolean.
  9. * @method isEmpty
  10. * @owner Observable
  11. */
  12. function isEmpty() {
  13. return isEmpty_1.isEmpty()(this);
  14. }
  15. exports.isEmpty = isEmpty;
  16. //# sourceMappingURL=isEmpty.js.map