ladybird/Userland/Libraries/LibJS/Tests/builtins/Intl/NumberFormat
Timothy Flynn 3b68bb6e73 LibJS: Store Intl mathematical values as strings when appropriate
The IntlMV is meant to be arbitrarily precise. If the user provides a
string value to be formatted, we lose precision by converting extremely
large values to a double. We were never able to address this, as support
for arbitrary precision was a big FIXME. But ICU can handle it by just
passing the raw string on through.
2024-06-10 13:51:51 +02:00
..
NumberFormat.@@toStringTag.js
NumberFormat.js LibJS: Raise the upper minimum/maximum fraction digit limit to 100 2023-07-22 10:18:55 +02:00
NumberFormat.prototype.format.js LibJS: Store Intl mathematical values as strings when appropriate 2024-06-10 13:51:51 +02:00
NumberFormat.prototype.formatRange.js LibJS+LibLocale: Replace number range formatting with ICU 2024-06-10 13:51:51 +02:00
NumberFormat.prototype.formatRangeToParts.js LibJS+LibLocale: Replace number range formatting with ICU 2024-06-10 13:51:51 +02:00
NumberFormat.prototype.formatToParts.js LibJS+LibLocale: Begin replacing number formatting with ICU 2024-06-10 13:51:51 +02:00
NumberFormat.prototype.resolvedOptions.js LibJS: Allow specifying only roundingIncrement in NumberFormat options 2022-11-29 10:24:44 +01:00
NumberFormat.supportedLocalesOf.js