TenantAtlas/apps/platform/.pnpm-store/v10/files/e0/90704df459b6ee7aa0bbf70e4571fd0fd2b95c77a213fcde694b2123340df1b3ff01331feaced2c841ab0d03fc5fbcfab6c089b2ac03fcd4c07d5cd6180553
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 { switchMap } from './switchMap';
import { isFunction } from '../util/isFunction';
export function switchMapTo(innerObservable, resultSelector) {
return isFunction(resultSelector) ? switchMap(function () { return innerObservable; }, resultSelector) : switchMap(function () { return innerObservable; });
}
//# sourceMappingURL=switchMapTo.js.map