menu | array, object, or function, array of items to normalize |
obj | object, Object |
xxxxxxxxxx
w2utils.normMenu(['1','2','3'])
xxxxxxxxxx
[
{ "id": "1", "text": "1" },
{ "id": "2", "text": "2" },
{ "id": "3", "text": "3" }
]
xxxxxxxxxx
w2utils.normMenu({ a: 1, b: 2, c: 55 })
xxxxxxxxxx
[
{ "id": "a", "text": 1 },
{ "id": "b", "text": 2 },
{ "id": "c", "text": 55 }
]