Would be cool to support toMap() map[string]interface{} method to simplify JSON-to-HOCON code replacement in the apps.
i.e. I have an app where I use JSON as a configuration format, now I want to use HOCON. My old code was converting JSON string to map[string]interface{} and expected it as the result, so I want to replace only the parsing part.
Hi!
Would be cool to support
toMap() map[string]interface{}
method to simplify JSON-to-HOCON code replacement in the apps.i.e. I have an app where I use JSON as a configuration format, now I want to use HOCON. My old code was converting JSON string to
map[string]interface{}
and expected it as the result, so I want to replace only the parsing part.Thanks!