X Tutup
export function __TS__ArrayToObject
(this: T[]): Record
{ const object: Record
= {}; for (const i of $range(1, this.length)) { object[i - 1] = this[i - 1]; } return object; }
X Tutup