(ta, index)
| 219 | } |
| 220 | |
| 221 | function ArrayAtHelper(ta, index) { |
| 222 | const result = Array.prototype.at.call(ta, index); |
| 223 | return Convert(result); |
| 224 | } |
| 225 | |
| 226 | function TypedArrayFillHelper(ta, n, start, end) { |
| 227 | if (ta instanceof BigInt64Array || ta instanceof BigUint64Array) { |