(n: bigint)
| 2208 | |
| 2209 | describe('digitCount() cache', () => { |
| 2210 | const abs = (n: bigint) => (n < 0n ? -n : n); |
| 2211 | |
| 2212 | test('matches bigintDigits(|significand|) across constructions', () => { |
| 2213 | const samples: BigDecimal[] = [ |
no outgoing calls
no test coverage detected