This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/rxjs/_esm2015/internal/util/subscribeToObservable.js
2019-08-11 20:48:02 +02:00

11 lines
No EOL
437 B
JavaScript

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