lazzy.ts
Version:
Fast and lightweight library for lazy operations with iterable objects.
4 lines • 356 B
TypeScript
import { Primitive, Select } from "../common";
export declare function join<T, R, N>(iterator: Iterator<T, R, N>, separator: string, ...select: Select<T, Primitive>): string;
export declare function joinAsync<T, R, N>(iterator: AsyncIterator<T, R, N>, separator: string, ...select: Select<T, Primitive>): Promise<string>;
//# sourceMappingURL=join.d.ts.map