TenantAtlas/apps/platform/.pnpm-store/v10/files/b8/47025885ee8e723136a5b2295d7a3d5f6987488245a70cdc5550e2688113c216b1a000643eb697258178eb19437612c7a47d3dbee8778fa9bad703d31268c0
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

6 lines
355 B
Plaintext

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