frontend/.pnpm-store/v3/files/5c/e555683cf831145dcd61d1b668b606e30a245c9c09a4e13568c289c2363293c51f6a898a694a1f645f6b581613649aabb88db81459390146520368821ffcc5

6 lines
319 B
Plaintext

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