Given a string I need to create an object and convert that string to properties.
So given this:
"anchor: true,
text: 'primary button',
style: 'primary'
"
I need to generate a real object:
{
anchor: true,
text: 'primary button',
style: 'primary'
}
Any help on this of course greatly appreciated.