Code coverage report for RxJS/dist/cjs/operators/extended/isEmpty.js

Statements: 94.74% (36 / 38)      Branches: 62.5% (10 / 16)      Functions: 100% (12 / 12)      Lines: 100% (30 / 30)      Ignored: none     

All files » RxJS/dist/cjs/operators/extended/ » isEmpty.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58    1 1   1   1   8   1   1   1 4     1 1 4     1 4     1     1 1   1 4   4     1 2 2 2     1 1     1 1     1     1
'use strict';
 
exports.__esModule = true;
exports['default'] = isEmpty;
 
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
 
function _inherits(subClass, superClass) { Iif (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); Eif (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
 
function _classCallCheck(instance, Constructor) { Iif (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
 
var _Subscriber2 = require('../../Subscriber');
 
var _Subscriber3 = _interopRequireDefault(_Subscriber2);
 
function isEmpty() {
    return this.lift(new IsEmptyOperator());
}
 
var IsEmptyOperator = (function () {
    function IsEmptyOperator() {
        _classCallCheck(this, IsEmptyOperator);
    }
 
    IsEmptyOperator.prototype.call = function call(observer) {
        return new IsEmptySubscriber(observer);
    };
 
    return IsEmptyOperator;
})();
 
var IsEmptySubscriber = (function (_Subscriber) {
    _inherits(IsEmptySubscriber, _Subscriber);
 
    function IsEmptySubscriber(destination) {
        _classCallCheck(this, IsEmptySubscriber);
 
        _Subscriber.call(this, destination);
    }
 
    IsEmptySubscriber.prototype.notifyComplete = function notifyComplete(isEmpty) {
        var destination = this.destination;
        destination.next(isEmpty);
        destination.complete();
    };
 
    IsEmptySubscriber.prototype._next = function _next(value) {
        this.notifyComplete(false);
    };
 
    IsEmptySubscriber.prototype._complete = function _complete() {
        this.notifyComplete(true);
    };
 
    return IsEmptySubscriber;
})(_Subscriber3['default']);
 
module.exports = exports['default'];