3 lines
95 B
TypeScript
3 lines
95 B
TypeScript
export const stringArrayJoin = (separator: string) => (arr: string[]) =>
|
|
arr.join(separator)
|