mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 23:34:56 +00:00
27 lines
474 B
JSON
27 lines
474 B
JSON
{
|
|
"formatLabel": [
|
|
{
|
|
"desc": "handles simple words",
|
|
"input": "users",
|
|
"expected": "Users"
|
|
},
|
|
{
|
|
"desc": "handles underscores",
|
|
"input": "active_users",
|
|
"expected": "Active users"
|
|
}
|
|
],
|
|
"formatValue": [
|
|
{
|
|
"desc": "handles zero",
|
|
"input": 0,
|
|
"expected": "0"
|
|
},
|
|
{
|
|
"desc": "handles negative numbers",
|
|
"input": -100,
|
|
"expected": "-100"
|
|
}
|
|
]
|
|
}
|