UNPKG

@typed/effects

Version:

Generator-powered Effect management

11 lines 377 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.joinAll = void 0; const combinators_1 = require("../combinators"); const join_1 = require("./join"); function* joinAll(...fibers) { const values = yield* combinators_1.combine(...fibers.map(join_1.join)); return values; } exports.joinAll = joinAll; //# sourceMappingURL=joinAll.js.map