TenantAtlas/apps/platform/.pnpm-store/v10/files/68/36b1fc4a6a4d322559882fd2383ef065a129627c3313ffc7bdbe701e26eedb84bb25f7468fd5a5de9d670e45e1cbaaa60bd2dd19545dbec74c1633784004e2
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
319 B
Plaintext

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