UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

12 lines 386 B
import type { Chunk } from "../definition.js"; /** * joins the elements together with "sep" in the middle */ export declare function join_(self: Chunk<string>, sep: string): string; /** * joins the elements together with "sep" in the middle * * @ets_data_first join_ */ export declare function join(sep: string): (self: Chunk<string>) => string; //# sourceMappingURL=join.d.ts.map