X Tutup
export function __TS__ArrayWith
(this: T[], index: number, value: T): T[] { const copy = [...this]; copy[index] = value; return copy; }
X Tutup