bitburner-src/utils/helpers/arrayToString.ts

4 lines
77 B
TypeScript

export function arrayToString<T>(a: T[]) {
return `[${a.join(", ")}]`;
}