(...args: Parameters<typeof _formatToParts>)
| 3 | import Decimal from '@formatjs/bigdecimal' |
| 4 | |
| 5 | function format(...args: Parameters<typeof _formatToParts>): string { |
| 6 | return _formatToParts(...args) |
| 7 | .map(({value}) => value) |
| 8 | .join('') |
| 9 | } |
| 10 | |
| 11 | const defaultOptions = { |
| 12 | numberingSystem: 'latn', |
no outgoing calls
no test coverage detected