/** * Returns the input array as a comma separated string. */ export function arrayToString(a: T[]) { return `[${a.join(", ")}]`; }