Go package which removes leading indentation/white-space from strings.
s := undent.String(`
{
"hello": "world"
}`,
)
fmt.Println(s)
{
"hello": "world"
}
Please see the Go Reference for documentation and examples.
Benchmark reports and graphs are available here: https://jimeh.me/undent/dev/bench/