( internalSlots: NumberFormatInternal, x: Decimal )
| 3 | import {PartitionNumberPattern} from '#packages/ecma402-abstract/NumberFormat/PartitionNumberPattern.js' |
| 4 | |
| 5 | export function FormatNumeric( |
| 6 | internalSlots: NumberFormatInternal, |
| 7 | x: Decimal |
| 8 | ): string { |
| 9 | const parts = PartitionNumberPattern(internalSlots, x) |
| 10 | return parts.map(p => p.value).join('') |
| 11 | } |
no test coverage detected