@codibre/fluent-iterable
Version:
Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).
10 lines (9 loc) • 545 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.combineJoinAsync = void 0;
const augmentative_iterable_1 = require("augmentative-iterable");
const recipes_1 = require("../recipes");
const combine_async_1 = require("./combine-async");
const map_async_1 = require("./map-async");
const reduce_async_1 = require("./reduce-async");
exports.combineJoinAsync = (0, recipes_1.combineJoinRecipe)(combine_async_1.combineAsync, map_async_1.mapAsync, reduce_async_1.reduceAsync, augmentative_iterable_1.resolverAsync);