1. Flattening Configuration Settings
Frontend DeveloperBackground
A developer has a complex configuration object containing various UI theme settings.
Problem
Need to display these settings in a table format within an admin dashboard.
How to use
Paste the theme configuration object into the input field to generate a list of settings.
{"primaryColor": "#007bff", "fontSize": "14px", "borderRadius": "4px"}Outcome
A clean array of objects: [{"key":"primaryColor","value":"#007bff"}, {"key":"fontSize","value":"14px"}, {"key":"borderRadius","value":"4px"}]