()
| 452 | } |
| 453 | |
| 454 | get delimiter() { |
| 455 | if (!this._delimiter) { |
| 456 | const localeData = getCachedLocaleDataInstance(getLocale()); |
| 457 | this._delimiter = localeData.getNumberSymbol("decimal") || "."; |
| 458 | } |
| 459 | |
| 460 | return this._delimiter; |
| 461 | } |
| 462 | |
| 463 | get groupSeparator() { |
| 464 | if (!this._groupSeparator) { |
nothing calls this directly
no test coverage detected