(input: Buffer)
| 107 | export const toBuffer = (input: any) => Buffer.from(input, 'hex') |
| 108 | |
| 109 | export const fromBuffer = (input: Buffer) => input.toString('hex') |
| 110 | |
| 111 | export const toBigInt = (input: string | number): bigint => BigInt(input) |
| 112 |
no test coverage detected