You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
760 B
20 lines
760 B
2 years ago
|
"use strict";
|
||
|
var Subscriber_1 = require('../Subscriber');
|
||
|
var rxSubscriber_1 = require('../symbol/rxSubscriber');
|
||
|
var Observer_1 = require('../Observer');
|
||
|
function toSubscriber(nextOrObserver, error, complete) {
|
||
|
if (nextOrObserver) {
|
||
|
if (nextOrObserver instanceof Subscriber_1.Subscriber) {
|
||
|
return nextOrObserver;
|
||
|
}
|
||
|
if (nextOrObserver[rxSubscriber_1.rxSubscriber]) {
|
||
|
return nextOrObserver[rxSubscriber_1.rxSubscriber]();
|
||
|
}
|
||
|
}
|
||
|
if (!nextOrObserver && !error && !complete) {
|
||
|
return new Subscriber_1.Subscriber(Observer_1.empty);
|
||
|
}
|
||
|
return new Subscriber_1.Subscriber(nextOrObserver, error, complete);
|
||
|
}
|
||
|
exports.toSubscriber = toSubscriber;
|
||
|
//# sourceMappingURL=toSubscriber.js.map
|