65 lines
No EOL
2.4 KiB
JavaScript
65 lines
No EOL
2.4 KiB
JavaScript
"use strict";
|
|
var __extends = (this && this.__extends) || (function () {
|
|
var extendStatics = function (d, b) {
|
|
extendStatics = Object.setPrototypeOf ||
|
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
return extendStatics(d, b);
|
|
}
|
|
return function (d, b) {
|
|
extendStatics(d, b);
|
|
function __() { this.constructor = d; }
|
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
};
|
|
})();
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var Subscriber_1 = require("../Subscriber");
|
|
function every(predicate, thisArg) {
|
|
return function (source) { return source.lift(new EveryOperator(predicate, thisArg, source)); };
|
|
}
|
|
exports.every = every;
|
|
var EveryOperator = (function () {
|
|
function EveryOperator(predicate, thisArg, source) {
|
|
this.predicate = predicate;
|
|
this.thisArg = thisArg;
|
|
this.source = source;
|
|
}
|
|
EveryOperator.prototype.call = function (observer, source) {
|
|
return source.subscribe(new EverySubscriber(observer, this.predicate, this.thisArg, this.source));
|
|
};
|
|
return EveryOperator;
|
|
}());
|
|
var EverySubscriber = (function (_super) {
|
|
__extends(EverySubscriber, _super);
|
|
function EverySubscriber(destination, predicate, thisArg, source) {
|
|
var _this = _super.call(this, destination) || this;
|
|
_this.predicate = predicate;
|
|
_this.thisArg = thisArg;
|
|
_this.source = source;
|
|
_this.index = 0;
|
|
_this.thisArg = thisArg || _this;
|
|
return _this;
|
|
}
|
|
EverySubscriber.prototype.notifyComplete = function (everyValueMatch) {
|
|
this.destination.next(everyValueMatch);
|
|
this.destination.complete();
|
|
};
|
|
EverySubscriber.prototype._next = function (value) {
|
|
var result = false;
|
|
try {
|
|
result = this.predicate.call(this.thisArg, value, this.index++, this.source);
|
|
}
|
|
catch (err) {
|
|
this.destination.error(err);
|
|
return;
|
|
}
|
|
if (!result) {
|
|
this.notifyComplete(false);
|
|
}
|
|
};
|
|
EverySubscriber.prototype._complete = function () {
|
|
this.notifyComplete(true);
|
|
};
|
|
return EverySubscriber;
|
|
}(Subscriber_1.Subscriber));
|
|
//# sourceMappingURL=every.js.map
|