Serializes an object to JSON and removes quotes around property names. Useful for generating loosely formatted string representations of objects.
The object to un-quote
A stringified JSON representation without quotes around keys
unQuoteObj({ a: 1 }); // '{a: 1}' Copy
unQuoteObj({ a: 1 }); // '{a: 1}'
Serializes an object to JSON and removes quotes around property names. Useful for generating loosely formatted string representations of objects.