Assert that input is an array of bigint.
input
bigint
assertIsBigIntArray([1n, 2n, 3n]); // does not throwassertIsBigIntArray([1, 2, 3]); // throws TypeError: input is not an array of bigint Copy
assertIsBigIntArray([1n, 2n, 3n]); // does not throwassertIsBigIntArray([1, 2, 3]); // throws TypeError: input is not an array of bigint
Assert that
inputis an array ofbigint.