mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 22:15:06 +08:00
8 lines
342 B
JavaScript
8 lines
342 B
JavaScript
|
|
"use strict";
|
||
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
|
var concatMap_1 = require("./concatMap");
|
||
|
|
function concatMapTo(innerObservable, resultSelector) {
|
||
|
|
return concatMap_1.concatMap(function () { return innerObservable; }, resultSelector);
|
||
|
|
}
|
||
|
|
exports.concatMapTo = concatMapTo;
|
||
|
|
//# sourceMappingURL=concatMapTo.js.map
|