(value: DecimalParts)
| 454 | } |
| 455 | |
| 456 | function partsToNumber(value: DecimalParts): number { |
| 457 | return Number(formatParts(value, false)); |
| 458 | } |
| 459 | |
| 460 | function exactInteger(value: DecimalParts): bigint { |
| 461 | const normalized = normalizeParts(value); |
no test coverage detected