mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-19 16:32:58 +00:00
7 lines
273 B
JavaScript
7 lines
273 B
JavaScript
import { operate } from '../util/lift';
|
|
export function subscribeOn(scheduler, delay = 0) {
|
|
return operate((source, subscriber) => {
|
|
subscriber.add(scheduler.schedule(() => source.subscribe(subscriber), delay));
|
|
});
|
|
}
|
|
//# sourceMappingURL=subscribeOn.js.map
|