47025885ee8e723136a5b2295d7a3d5f6987488245a70cdc5550e2688113c216b1a000643eb697258178eb19437612c7a47d3dbee8778fa9bad703d31268c0 355 B

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