W72crm_web-master/node_modules/rxjs/_esm2015/internal/observable/from.js

15 lines
441 B
JavaScript
Raw Permalink Normal View History

2025-05-27 11:25:53 +08:00
import { Observable } from '../Observable';
import { subscribeTo } from '../util/subscribeTo';
import { scheduled } from '../scheduled/scheduled';
export function from(input, scheduler) {
if (!scheduler) {
if (input instanceof Observable) {
return input;
}
return new Observable(subscribeTo(input));
}
else {
return scheduled(input, scheduler);
}
}
//# sourceMappingURL=from.js.map