Markus Moormann

Results 3 comments of Markus Moormann

@cbeust what about an additional method? `toPrettyJsonString` current Workaround would be an extension function ``` fun Klaxon.toPrettyJsonString(value: Any): String { val builder = StringBuilder(Klaxon().toJsonString(value)) return (Parser().parse(builder) as JsonBase).toJsonString(true) } ```

@camdenorrb sure this is not ideal. It's just a quick fix to cleanly code against something.. But I'm still wondering whether it would be bad to add a new function....