UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge

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