Files
muuhd/node_modules/rxjs/dist/esm5/internal/observable/fromSubscribable.js
Kim Ravn Hansen 3f11ebe6dc rearrage_stuff
2025-09-16 11:26:40 +02:00

5 lines
236 B
JavaScript

import { Observable } from '../Observable';
export function fromSubscribable(subscribable) {
return new Observable(function (subscriber) { return subscribable.subscribe(subscriber); });
}
//# sourceMappingURL=fromSubscribable.js.map