(n, ix, ta)
| 6211 | let values; |
| 6212 | let rab; |
| 6213 | function CollectValues(n, ix, ta) { |
| 6214 | if (typeof n == 'bigint') { |
| 6215 | values.push(Number(n)); |
| 6216 | } else { |
| 6217 | values.push(n); |
| 6218 | } |
| 6219 | // We still need to return a valid BigInt / non-BigInt, even if |
| 6220 | // n is `undefined`. |
| 6221 | if (IsBigIntTypedArray(ta)) { |
| 6222 | return 0n; |
| 6223 | } |
| 6224 | return 0; |
| 6225 | } |
| 6226 | |
| 6227 | function Helper(array) { |
| 6228 | values = []; |
nothing calls this directly
no test coverage detected