MCPcopy Index your code
hub / github.com/nodejs/node / bigIntArrayToUnsignedBigInt

Function bigIntArrayToUnsignedBigInt

lib/internal/crypto/util.js:814–823  ·  view source on GitHub ↗
(input)

Source from the content-addressed store, hash-verified

812}
813
814function 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
825function getStringOption(options, key) {
826 let value;

Callers 2

normalizeKeyDetailsFunction · 0.85
testFunction · 0.85

Calls

no outgoing calls

Tested by 1

testFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…