asyncerator
Version:
Provide supporting types for AsyncIterable/AsyncIterableIterators, promisified stream.pipeline implementation, and Array-like utility operators, sources and sinks.
16 lines (12 loc) • 329 B
text/typescript
// index.ts
/*
* Copyright (c) 2021-2024 Check Digit, LLC
*
* This code is licensed under the MIT license (see LICENSE.txt for details).
*/
export { default as from } from './asyncerator';
export * from './asyncerator';
export * from './operator';
export * from './node';
export * from './sink';
export * from './source';