Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
439 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | import { Observable } from '../Observable';
|
---|
| 2 | import { SchedulerLike } from '../types';
|
---|
| 3 | import { subscribeToPromise } from '../util/subscribeToPromise';
|
---|
| 4 | import { schedulePromise } from '../scheduled/schedulePromise';
|
---|
| 5 |
|
---|
| 6 | export function fromPromise<T>(input: PromiseLike<T>, scheduler?: SchedulerLike) {
|
---|
| 7 | if (!scheduler) {
|
---|
| 8 | return new Observable<T>(subscribeToPromise(input));
|
---|
| 9 | } else {
|
---|
| 10 | return schedulePromise(input, scheduler);
|
---|
| 11 | }
|
---|
| 12 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.