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