(array, index, value)
| 127 | } |
| 128 | |
| 129 | function WriteToTypedArray(array, index, value) { |
| 130 | if (array instanceof BigInt64Array || |
| 131 | array instanceof BigUint64Array) { |
| 132 | array[index] = BigInt(value); |
| 133 | } else { |
| 134 | array[index] = value; |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | // Also preserves undefined. |
| 139 | function Convert(item) { |
no outgoing calls
no test coverage detected
searching dependent graphs…