(input)
| 812 | } |
| 813 | |
| 814 | function bigIntArrayToUnsignedBigInt(input) { |
| 815 | let result = 0n; |
| 816 | |
| 817 | for (let n = 0; n < input.length; ++n) { |
| 818 | const n_reversed = input.length - n - 1; |
| 819 | result |= BigInt(input[n]) << 8n * BigInt(n_reversed); |
| 820 | } |
| 821 | |
| 822 | return result; |
| 823 | } |
| 824 | |
| 825 | function getStringOption(options, key) { |
| 826 | let value; |
no outgoing calls
searching dependent graphs…