fromSubscribable.js 218 Bytes Raw Blame History Permalink 1 2 3 4 5 import { Observable } from '../Observable'; export function fromSubscribable(subscribable) { return new Observable((subscriber) => subscribable.subscribe(subscriber)); } //# sourceMappingURL=fromSubscribable.js.map