ipld-eth-server/vendor/github.com/polydawn/refmt/json/jsonCommon.go

20 lines
395 B
Go
Raw Normal View History

package json
//const (
// jsonMajor
//)
// The most heavily used words, cached as byte slices.
var (
wordTrue = []byte("true")
wordFalse = []byte("false")
wordNull = []byte("null")
wordArrOpen = []byte("[")
wordArrClose = []byte("]")
wordMapOpen = []byte("{")
wordMapClose = []byte("}")
wordColon = []byte(":")
wordComma = []byte(",")
wordSpace = []byte(" ")
)