switchAll.js 341 B

12345678910
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.switchAll = void 0;
  4. var switchMap_1 = require("./switchMap");
  5. var identity_1 = require("../util/identity");
  6. function switchAll() {
  7. return switchMap_1.switchMap(identity_1.identity);
  8. }
  9. exports.switchAll = switchAll;
  10. //# sourceMappingURL=switchAll.js.map