Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / _esm5 / internal / observable / from.js
1 /** PURE_IMPORTS_START _Observable,_util_subscribeTo,_scheduled_scheduled PURE_IMPORTS_END */
2 import { Observable } from '../Observable';
3 import { subscribeTo } from '../util/subscribeTo';
4 import { scheduled } from '../scheduled/scheduled';
5 export function from(input, scheduler) {
6     if (!scheduler) {
7         if (input instanceof Observable) {
8             return input;
9         }
10         return new Observable(subscribeTo(input));
11     }
12     else {
13         return scheduled(input, scheduler);
14     }
15 }
16 //# sourceMappingURL=from.js.map