Files
undent/README.md

1.6 KiB

undent

Go package which removes leading indentation/white-space from multi-line strings and byte slices.

Go Reference Actions Status Coverage GitHub issues GitHub pull requests License Status

s := undent.String(`
	{
	  "hello": "world"
	}`,
)
fmt.Println(s)
{
  "hello": "world"
}

Documentation

Please see the Go Reference for documentation and examples.

License

MIT