ipld-eth-server/vendor/github.com/polydawn/refmt/json/jsonCommon.go
Elizabeth Engelman 36533f7c3f Update vendor directory and make necessary code changes
Fixes for new geth version
2019-09-25 16:32:27 -05:00

20 lines
395 B
Go

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(" ")
)