36b1fc4a6a4d322559882fd2383ef065a129627c3313ffc7bdbe701e26eedb84bb25f7468fd5a5de9d670e45e1cbaaa60bd2dd19545dbec74c1633784004e2 319 B

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