UNPKG

recoder-code

Version:

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

6 lines • 355 B
import { concatMap } from './concatMap'; import { isFunction } from '../util/isFunction'; export function concatMapTo(innerObservable, resultSelector) { return isFunction(resultSelector) ? concatMap(function () { return innerObservable; }, resultSelector) : concatMap(function () { return innerObservable; }); } //# sourceMappingURL=concatMapTo.js.map