export function concat(separator: string, args: string[]): string { return args.reduce((accumulator, currentValue) => accumulator + separator + currentValue); }