mirror of
https://github.com/kataras/iris.git
synced 2025-12-18 02:17:05 +00:00
new /x/jsonx and /x/mathx util sub-packages
This commit is contained in:
21
x/jsonx/jsonx.go
Normal file
21
x/jsonx/jsonx.go
Normal file
@@ -0,0 +1,21 @@
|
||||
package jsonx
|
||||
|
||||
import "bytes"
|
||||
|
||||
var (
|
||||
quoteLiteral = '"'
|
||||
emptyQuoteBytes = []byte(`""`)
|
||||
nullLiteral = []byte("null")
|
||||
)
|
||||
|
||||
func isNull(b []byte) bool {
|
||||
return len(b) == 0 || bytes.Equal(b, nullLiteral)
|
||||
}
|
||||
|
||||
func trimQuotesFunc(r rune) bool {
|
||||
return r == quoteLiteral
|
||||
}
|
||||
|
||||
func trimQuotes(b []byte) []byte {
|
||||
return bytes.TrimFunc(b, trimQuotesFunc)
|
||||
}
|
||||
Reference in New Issue
Block a user