UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

12 lines 415 B
import { Observable } from '../Observable'; import { subscribeToPromise } from '../util/subscribeToPromise'; import { schedulePromise } from '../scheduled/schedulePromise'; export function fromPromise(input, scheduler) { if (!scheduler) { return new Observable(subscribeToPromise(input)); } else { return schedulePromise(input, scheduler); } } //# sourceMappingURL=fromPromise.js.map