I have an object
{
'1': {
'nome': 'pedro',
'idade': 2,
},
'2': {
'maria': maria,
'idade': 5,
}
}
Array
[{
'1': {
'nome': 'pedro',
'idade': 2,
},
'2': {
'maria': maria,
'idade': 5,
}
}]
I need to check if it is an object as the example and if it is to transform into array as
pure javascript template