@codibre/fluent-iterable
Version:
Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).
9 lines (8 loc) • 400 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.repeatAsync = void 0;
const map_async_1 = require("./map-async");
const recipes_1 = require("../recipes");
const utils_1 = require("../utils");
const concat_async_1 = require("./concat-async");
exports.repeatAsync = (0, recipes_1.repeatRecipe)(map_async_1.mapAsync, concat_async_1.concatAsync, utils_1.emptyAsync);