mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 18:23:54 +01:00
4 lines
77 B
TypeScript
4 lines
77 B
TypeScript
|
export function arrayToString<T>(a: T[]) {
|
||
|
return `[${a.join(", ")}]`;
|
||
|
}
|