mirror of
https://github.com/divkit/divkit.git
synced 2026-05-07 20:02:32 +00:00
1426d82371
commit_hash:30dcfc43ef97eaeda0466e23327ea6f5daf83020
41 lines
750 B
JSON
41 lines
750 B
JSON
{
|
||
"cases": [
|
||
{
|
||
"expression": "@{decimalFormat(1234567.89, '.#')}",
|
||
"expected": {
|
||
"type": "string",
|
||
"value": "1234567.9"
|
||
},
|
||
"platforms": [
|
||
"android",
|
||
"web",
|
||
"ios"
|
||
]
|
||
},
|
||
{
|
||
"expression": "@{decimalFormat(1234567.89, '#,###.#', 'ru-RU')}",
|
||
"expected": {
|
||
"type": "string",
|
||
"value": "1 234 567,9"
|
||
},
|
||
"platforms": [
|
||
"android",
|
||
"web",
|
||
"ios"
|
||
]
|
||
},
|
||
{
|
||
"expression": "@{decimalFormat(1234567.89, '#,###.#', 'en-US')}",
|
||
"expected": {
|
||
"type": "string",
|
||
"value": "1,234,567.9"
|
||
},
|
||
"platforms": [
|
||
"android",
|
||
"web",
|
||
"ios"
|
||
]
|
||
}
|
||
]
|
||
}
|