wishthis/node_modules/rxjs/dist/cjs/internal/operators/mergeAll.js

11 lines
412 B
JavaScript
Raw Normal View History

2022-01-21 08:28:41 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
2022-06-08 10:36:39 +00:00
exports.mergeAll = void 0;
2022-01-21 08:28:41 +00:00
var mergeMap_1 = require("./mergeMap");
var identity_1 = require("../util/identity");
function mergeAll(concurrent) {
2022-06-08 10:36:39 +00:00
if (concurrent === void 0) { concurrent = Infinity; }
2022-01-21 08:28:41 +00:00
return mergeMap_1.mergeMap(identity_1.identity, concurrent);
}
exports.mergeAll = mergeAll;
//# sourceMappingURL=mergeAll.js.map