UNPKG

@codibre/fluent-iterable

Version:

Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).

16 lines (15 loc) 691 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.unwindAsync = void 0; const recipes_1 = require("../recipes"); const basic_ingredients_async_1 = require("./basic-ingredients-async"); const combine_join_async_1 = require("./combine-join-async"); const flatten_async_1 = require("./flatten-async"); const to_object_async_1 = require("./to-object-async"); exports.unwindAsync = (0, recipes_1.unwindRecipe)({ ...basic_ingredients_async_1.basicAsync, flatten: flatten_async_1.flattenAsync, combineJoin: combine_join_async_1.combineJoinAsync, toObject: to_object_async_1.toObjectAsync, symbols: [Symbol.iterator, Symbol.asyncIterator], });