@jasmith79/sequable
Version:
Library functions for working with generators
12 lines (11 loc) • 536 B
TypeScript
import { map } from "./map.js";
import { concat } from "./concat.js";
import { filter } from "./filter.js";
import { partition, partitionBy } from "./partition.js";
import { take, takeWhile } from "./take.js";
import { drop, dropWhile } from "./drop.js";
import { toIterable, toIterator } from "./sequable.js";
import { zip } from "./zip.js";
import type { Sequable } from "./sequable.js";
export type { Sequable };
export { concat, map, drop, dropWhile, filter, partition, partitionBy, take, takeWhile, toIterable, toIterator, zip, };