iteragain
Version:
Javascript Iterable/Iterator/Generator-function utilities.
67 lines • 1.81 kB
JavaScript
export * from './types';
export * from './chunks';
export * from './combinations';
export * from './compress';
export * from './concat';
export * from './resume';
export * from './count';
export * from './cycle';
export * from './dropWhile';
export * from './enumerate';
export * from './flatten';
export * from './isIterable';
export * from './isIterator';
export * from './iter';
export * from './partition';
export * from './product';
export * from './range';
export * from './repeat';
export * from './take';
export * from './toArray';
export * from './toIterator';
export * from './zip';
export * from './zipLongest';
export * from './filter';
export * from './filterMap';
export * from './pairwise';
export * from './permutations';
export * from './slice';
export * from './takeWhile';
export * from './map';
export * from './tap';
export * from './triplewise';
export * from './windows';
export * from './tee';
export * from './reduce';
export * from './quantify';
export * from './every';
export * from './some';
export * from './forEach';
export * from './nth';
export * from './roundrobin';
export * from './distribute';
export * from './divide';
export * from './unique';
export * from './spy';
export * from './unzip';
export * from './consume';
export * from './reverse';
export * from './seekable';
export * from './min';
export * from './max';
export * from './minmax';
export * from './find';
export * from './findIndex';
export * from './includes';
export * from './shuffle';
export * from './pluck';
export * from './sort';
export * from './length';
export * from './flatMap';
export * from './promiseAll';
export * from './promiseRace';
export * from './groupBy';
export * from './arrayLike';
export * from './pipe';
export * from './toIterableIterator';
//# sourceMappingURL=index.js.map