( this: Intl.NumberFormat, start: number | bigint | Decimal, end: number | bigint | Decimal )
| 100 | } |
| 101 | |
| 102 | function formatRange( |
| 103 | this: Intl.NumberFormat, |
| 104 | start: number | bigint | Decimal, |
| 105 | end: number | bigint | Decimal |
| 106 | ) { |
| 107 | return FormatNumericRange( |
| 108 | this, |
| 109 | ToIntlMathematicalValue(start), |
| 110 | ToIntlMathematicalValue(end), |
| 111 | { |
| 112 | getInternalSlots, |
| 113 | } |
| 114 | ) |
| 115 | } |
| 116 | |
| 117 | function formatRangeToParts( |
| 118 | this: Intl.NumberFormat, |
nothing calls this directly
no test coverage detected