* Formats a number with thousands separator based on current locale * @private
(value: number)
| 599 | * @private |
| 600 | */ |
| 601 | _formatNumber(value: number): string { |
| 602 | return this.formatter.format(value); |
| 603 | } |
| 604 | |
| 605 | /** |
| 606 | * Parses formatted number string back to numeric value |
no test coverage detected