@jasmith79/sequable
Version:
Library functions for working with generators
26 lines (24 loc) • 561 B
text/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,
};