exhaustAll.js 350 B

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