UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

8 lines • 334 B
import { operate } from '../util/lift'; export function subscribeOn(scheduler, delay) { if (delay === void 0) { delay = 0; } return operate(function (source, subscriber) { subscriber.add(scheduler.schedule(function () { return source.subscribe(subscriber); }, delay)); }); } //# sourceMappingURL=subscribeOn.js.map