mirror of
https://github.com/jimeh/undent.git
synced 2026-02-19 03:56:38 +00:00
4dfb3691491567b8462b7e26943efd3d2bfabf08
feat(undent): initial implementation
undent
Go package which removes leading indentation/white-space from multi-line strings and byte slices.
s := undent.String(`
{
"hello": "world"
}`,
)
fmt.Println(s)
{
"hello": "world"
}
Languages
Go
89.6%
Makefile
10.4%