hugoWebsite/node_modules/rxjs/dist/esm5/internal/observable/fromSubscribable.js
Jeremy Nusser 0ab675d92b Initial commit... 🎉🎉🎉
2022-10-28 17:20:35 -05:00

5 lines
No EOL
236 B
JavaScript

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