MCPcopy Create free account
hub / github.com/Project-DARC/DARC / toBigIntArray

Function toBigIntArray

darc-js/tests/expression-test/expression-test.ts:31–37  ·  view source on GitHub ↗
(array: number[])

Source from the content-addressed store, hash-verified

29
30
31function toBigIntArray(array: number[]): bigint[] {
32 let bigIntArray: bigint[] = [];
33 for (let i = 0; i < array.length; i++) {
34 bigIntArray.push(BigInt(array[i]));
35 }
36 return bigIntArray;
37}
38
39describe('expression node basic test', () => {
40 it ('should run the program "add and enable plugin" with generated condition node list in SDK', async () => {

Callers 1

expression-test.tsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected