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.
11 lines
437 B
11 lines
437 B
4 years ago
|
import { observable as Symbol_observable } from '../symbol/observable';
|
||
|
export const subscribeToObservable = (obj) => (subscriber) => {
|
||
|
const 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
|