Skip to content

Commit

Permalink
✨ feat: add unify function pretty supporting json format #5
Browse files Browse the repository at this point in the history
  • Loading branch information
pnguyen215 committed Nov 10, 2024
1 parent caf29ec commit f20b14d
Show file tree
Hide file tree
Showing 3 changed files with 1,185 additions and 11 deletions.
12 changes: 6 additions & 6 deletions const.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ const (
)

const (
jsonNull jsonType = iota
jsonFalse
jNumber
jsonString
jsonTrue
jsonJson
jsonNull jsonType = iota // Represents a JSON null value
jsonFalse // Represents a JSON false boolean
jNumber // Represents a JSON number
jsonString // Represents a JSON string
jsonTrue // Represents a JSON true boolean
jsonJson // Represents a JSON object or array
)
Loading

0 comments on commit f20b14d

Please sign in to comment.