asyncerator
Version:
Provide supporting types for AsyncIterable/AsyncIterableIterators, promisified stream.pipeline implementation, and Array-like utility operators, sources and sinks.
13 lines (10 loc) • 344 B
text/typescript
// sink/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 reduce } from './reduce';
export { default as toNull } from './to-null';
export { default as toArray } from './to-array';
export { default as toString } from './to-string';