@cspell/cspell-pipe
Version:
Library to make working with Iterators/AsyncIterators easier.
18 lines • 1.16 kB
TypeScript
export { opAppend, opAppendAsync, opAppendSync } from './append.js';
export { opAwaitAsync } from './await.js';
export { opBuffer, opBufferAsync, opBufferSync } from './buffer.js';
export { opCombineAsync, opCombineSync } from './combine.js';
export { opConcatMap, opConcatMapAsync, opConcatMapSync } from './concatMap.js';
export { opFilter, opFilterAsync, opFilterSync } from './filter.js';
export { opFirst, opFirstAsync, opFirstSync } from './first.js';
export { opFlatten, opFlattenAsync, opFlattenSync } from './flatten.js';
export { opJoinStrings, opJoinStringsAsync, opJoinStringsSync } from './joinStrings.js';
export { opLast, opLastAsync, opLastSync } from './last.js';
export { opMap, opMapAsync, opMapSync } from './map.js';
export { opReduceAsync, opReduceSync } from './reduce.js';
export { opSkip, opSkipAsync, opSkipSync } from './skip.js';
export { opTake, opTakeAsync, opTakeSync } from './take.js';
export { opTap, opTapAsync, opTapSync } from './tap.js';
export type { OperatorAsync, OperatorSync, OperatorSyncToAsync } from './types.js';
export { opUnique, opUniqueAsync, opUniqueSync } from './unique.js';
//# sourceMappingURL=index.d.ts.map