frontend/.pnpm-store/v3/files/45/f20df89254a58d697f942505a3aa73a4ed7aa78e9c885b2c025979995ca9de62bf8b302d8917a4066b6771eb2e047d94ee3f69a128682548b30c35d7eac868

10 lines
529 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.switchMapTo = void 0;
var switchMap_1 = require("./switchMap");
var isFunction_1 = require("../util/isFunction");
function switchMapTo(innerObservable, resultSelector) {
return isFunction_1.isFunction(resultSelector) ? switchMap_1.switchMap(function () { return innerObservable; }, resultSelector) : switchMap_1.switchMap(function () { return innerObservable; });
}
exports.switchMapTo = switchMapTo;
//# sourceMappingURL=switchMapTo.js.map