https://github.com/hyperxpizza/pretty
https://github.com/hyperxpizza/pretty
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hyperxpizza/pretty
- Owner: hyperxpizza
- Created: 2024-11-07T10:12:33.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-07T10:17:55.000Z (over 1 year ago)
- Last Synced: 2024-11-07T11:25:43.546Z (over 1 year ago)
- Language: Go
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pretty
Example usage:
```go
package main
import (
"github.com/hyperxpizza/pretty"
)
func main() {
uglyObject := map[string]any{"ugly": "object","not": "pretty"}
pretty.Print(uglyObject)
}
// Outputs:
// {
// "ugly": "object",
// "not": "pretty"
// }
```