Function: toBigInt()
toBigInt(
value):bigint
Defined in: src/utils/num.ts:44
Convert BigNumberish to bigint
Parameters
value
value to convert
Returns
bigint
converted value
Example
const str = '123';
const result = toBigInt(str);
// result = 123n