(bits: number)
| 16 | const maxUint = (bits: number) => BI_TWO ** BigInt(bits) - BI_ONE |
| 17 | |
| 18 | export const getMaxUint = (bits: number) => `0x${padEvenBytes(maxUint(bits).toString(16))}` |
| 19 | |
| 20 | const getOmitMask = (offset: number, size: number) => { |
| 21 | const bitsAfterStart = 256 - offset; |
no test coverage detected