Files
pyrofetes-frontend/node_modules/rxjs/dist/esm5/internal/observable/fromSubscribable.js
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +01: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