Go package which removes leading indentation/white-space from multi-line strings and byte slices.
```go s := undent.String(` { "hello": "world" }`, ) fmt.Println(s) ``` ``` { "hello": "world" } ``` ## Documentation Please see the [Go Reference](https://pkg.go.dev/github.com/jimeh/undent) for documentation and examples. ## License [MIT](https://github.com/jimeh/undent/blob/master/LICENSE)