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.
18 lines
689 B
18 lines
689 B
import { Subscriber } from '../Subscriber'; |
|
import { rxSubscriber as rxSubscriberSymbol } from '../symbol/rxSubscriber'; |
|
import { empty as emptyObserver } from '../Observer'; |
|
export function toSubscriber(nextOrObserver, error, complete) { |
|
if (nextOrObserver) { |
|
if (nextOrObserver instanceof Subscriber) { |
|
return nextOrObserver; |
|
} |
|
if (nextOrObserver[rxSubscriberSymbol]) { |
|
return nextOrObserver[rxSubscriberSymbol](); |
|
} |
|
} |
|
if (!nextOrObserver && !error && !complete) { |
|
return new Subscriber(emptyObserver); |
|
} |
|
return new Subscriber(nextOrObserver, error, complete); |
|
} |
|
//# sourceMappingURL=toSubscriber.js.map
|