How can I convert the data from LocalStorage into an array for *ngFor? The data is retrieved as a JSON object and after parsing it, I'm unsure how to change it into an array. Here's a sample of the object:
{
"Monti": {
"name": "Visa & MasterCard",
"code": "monti",
"deposit": "Free",
"depositProcessing": "Instant",
"icon": "<img src=\"//cdn.example.com/_payicons/monti.png\"/>",
"supportWithdrawal": true,
"withdrawAllowedWithoutDeposit": false,
"depositLimits": {
"currency": "EUR",
"min": 10,
"max": 5000
}
},
"Montii": {
"name": "Visa & MasterCard",
"code": "monti",
"deposit": "Free",
"depositProcessing": "Instant",
"icon": "<img src=\"//cdn.example.com/_payicons/monti.png\"/>",
"supportWithdrawal": true,
"withdrawAllowedWithoutDeposit": false,
"depositLimits": {
"currency": "EUR",
"min": 10,
"max": 5000
}
}
}