Every new change
This commit is contained in:
14
node_modules/rxjs/_esm5/internal/util/subscribeToObservable.js
generated
vendored
Normal file
14
node_modules/rxjs/_esm5/internal/util/subscribeToObservable.js
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
/** PURE_IMPORTS_START _symbol_observable PURE_IMPORTS_END */
|
||||
import { observable as Symbol_observable } from '../symbol/observable';
|
||||
export var subscribeToObservable = function (obj) {
|
||||
return function (subscriber) {
|
||||
var obs = obj[Symbol_observable]();
|
||||
if (typeof obs.subscribe !== 'function') {
|
||||
throw new TypeError('Provided object does not correctly implement Symbol.observable');
|
||||
}
|
||||
else {
|
||||
return obs.subscribe(subscriber);
|
||||
}
|
||||
};
|
||||
};
|
||||
//# sourceMappingURL=subscribeToObservable.js.map
|
Reference in New Issue
Block a user