source: trip-planner-front/node_modules/rxjs/internal/operators/switchMapTo.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 424 bytes
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var switchMap_1 = require("./switchMap");
4function switchMapTo(innerObservable, resultSelector) {
5 return resultSelector ? switchMap_1.switchMap(function () { return innerObservable; }, resultSelector) : switchMap_1.switchMap(function () { return innerObservable; });
6}
7exports.switchMapTo = switchMapTo;
8//# sourceMappingURL=switchMapTo.js.map
Note: See TracBrowser for help on using the repository browser.