mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-16 15:23:47 -05:00
chore(package): re-init package with commitizen and standard-release
This commit is contained in:
167
node_modules/rxjs/_esm5/Subject.js
generated
vendored
Normal file
167
node_modules/rxjs/_esm5/Subject.js
generated
vendored
Normal file
@@ -0,0 +1,167 @@
|
||||
/** PURE_IMPORTS_START ._Observable,._Subscriber,._Subscription,._util_ObjectUnsubscribedError,._SubjectSubscription,._symbol_rxSubscriber PURE_IMPORTS_END */
|
||||
var __extends = (this && this.__extends) || function (d, b) {
|
||||
for (var p in b)
|
||||
if (b.hasOwnProperty(p))
|
||||
d[p] = b[p];
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
import { Observable } from './Observable';
|
||||
import { Subscriber } from './Subscriber';
|
||||
import { Subscription } from './Subscription';
|
||||
import { ObjectUnsubscribedError } from './util/ObjectUnsubscribedError';
|
||||
import { SubjectSubscription } from './SubjectSubscription';
|
||||
import { rxSubscriber as rxSubscriberSymbol } from './symbol/rxSubscriber';
|
||||
/**
|
||||
* @class SubjectSubscriber<T>
|
||||
*/
|
||||
export var SubjectSubscriber = /*@__PURE__*/ (/*@__PURE__*/ function (_super) {
|
||||
__extends(SubjectSubscriber, _super);
|
||||
function SubjectSubscriber(destination) {
|
||||
_super.call(this, destination);
|
||||
this.destination = destination;
|
||||
}
|
||||
return SubjectSubscriber;
|
||||
}(Subscriber));
|
||||
/**
|
||||
* @class Subject<T>
|
||||
*/
|
||||
export var Subject = /*@__PURE__*/ (/*@__PURE__*/ function (_super) {
|
||||
__extends(Subject, _super);
|
||||
function Subject() {
|
||||
_super.call(this);
|
||||
this.observers = [];
|
||||
this.closed = false;
|
||||
this.isStopped = false;
|
||||
this.hasError = false;
|
||||
this.thrownError = null;
|
||||
}
|
||||
Subject.prototype[rxSubscriberSymbol] = function () {
|
||||
return new SubjectSubscriber(this);
|
||||
};
|
||||
Subject.prototype.lift = function (operator) {
|
||||
var subject = new AnonymousSubject(this, this);
|
||||
subject.operator = operator;
|
||||
return subject;
|
||||
};
|
||||
Subject.prototype.next = function (value) {
|
||||
if (this.closed) {
|
||||
throw new ObjectUnsubscribedError();
|
||||
}
|
||||
if (!this.isStopped) {
|
||||
var observers = this.observers;
|
||||
var len = observers.length;
|
||||
var copy = observers.slice();
|
||||
for (var i = 0; i < len; i++) {
|
||||
copy[i].next(value);
|
||||
}
|
||||
}
|
||||
};
|
||||
Subject.prototype.error = function (err) {
|
||||
if (this.closed) {
|
||||
throw new ObjectUnsubscribedError();
|
||||
}
|
||||
this.hasError = true;
|
||||
this.thrownError = err;
|
||||
this.isStopped = true;
|
||||
var observers = this.observers;
|
||||
var len = observers.length;
|
||||
var copy = observers.slice();
|
||||
for (var i = 0; i < len; i++) {
|
||||
copy[i].error(err);
|
||||
}
|
||||
this.observers.length = 0;
|
||||
};
|
||||
Subject.prototype.complete = function () {
|
||||
if (this.closed) {
|
||||
throw new ObjectUnsubscribedError();
|
||||
}
|
||||
this.isStopped = true;
|
||||
var observers = this.observers;
|
||||
var len = observers.length;
|
||||
var copy = observers.slice();
|
||||
for (var i = 0; i < len; i++) {
|
||||
copy[i].complete();
|
||||
}
|
||||
this.observers.length = 0;
|
||||
};
|
||||
Subject.prototype.unsubscribe = function () {
|
||||
this.isStopped = true;
|
||||
this.closed = true;
|
||||
this.observers = null;
|
||||
};
|
||||
Subject.prototype._trySubscribe = function (subscriber) {
|
||||
if (this.closed) {
|
||||
throw new ObjectUnsubscribedError();
|
||||
}
|
||||
else {
|
||||
return _super.prototype._trySubscribe.call(this, subscriber);
|
||||
}
|
||||
};
|
||||
/** @deprecated internal use only */ Subject.prototype._subscribe = function (subscriber) {
|
||||
if (this.closed) {
|
||||
throw new ObjectUnsubscribedError();
|
||||
}
|
||||
else if (this.hasError) {
|
||||
subscriber.error(this.thrownError);
|
||||
return Subscription.EMPTY;
|
||||
}
|
||||
else if (this.isStopped) {
|
||||
subscriber.complete();
|
||||
return Subscription.EMPTY;
|
||||
}
|
||||
else {
|
||||
this.observers.push(subscriber);
|
||||
return new SubjectSubscription(this, subscriber);
|
||||
}
|
||||
};
|
||||
Subject.prototype.asObservable = function () {
|
||||
var observable = new Observable();
|
||||
observable.source = this;
|
||||
return observable;
|
||||
};
|
||||
Subject.create = function (destination, source) {
|
||||
return new AnonymousSubject(destination, source);
|
||||
};
|
||||
return Subject;
|
||||
}(Observable));
|
||||
/**
|
||||
* @class AnonymousSubject<T>
|
||||
*/
|
||||
export var AnonymousSubject = /*@__PURE__*/ (/*@__PURE__*/ function (_super) {
|
||||
__extends(AnonymousSubject, _super);
|
||||
function AnonymousSubject(destination, source) {
|
||||
_super.call(this);
|
||||
this.destination = destination;
|
||||
this.source = source;
|
||||
}
|
||||
AnonymousSubject.prototype.next = function (value) {
|
||||
var destination = this.destination;
|
||||
if (destination && destination.next) {
|
||||
destination.next(value);
|
||||
}
|
||||
};
|
||||
AnonymousSubject.prototype.error = function (err) {
|
||||
var destination = this.destination;
|
||||
if (destination && destination.error) {
|
||||
this.destination.error(err);
|
||||
}
|
||||
};
|
||||
AnonymousSubject.prototype.complete = function () {
|
||||
var destination = this.destination;
|
||||
if (destination && destination.complete) {
|
||||
this.destination.complete();
|
||||
}
|
||||
};
|
||||
/** @deprecated internal use only */ AnonymousSubject.prototype._subscribe = function (subscriber) {
|
||||
var source = this.source;
|
||||
if (source) {
|
||||
return this.source.subscribe(subscriber);
|
||||
}
|
||||
else {
|
||||
return Subscription.EMPTY;
|
||||
}
|
||||
};
|
||||
return AnonymousSubject;
|
||||
}(Subject));
|
||||
//# sourceMappingURL=Subject.js.map
|
||||
Reference in New Issue
Block a user