summaryrefslogtreecommitdiff
path: root/vendor/github.com/buger/jsonparser/bytes_safe.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/buger/jsonparser/bytes_safe.go')
-rw-r--r--vendor/github.com/buger/jsonparser/bytes_safe.go25
1 files changed, 0 insertions, 25 deletions
diff --git a/vendor/github.com/buger/jsonparser/bytes_safe.go b/vendor/github.com/buger/jsonparser/bytes_safe.go
deleted file mode 100644
index ff16a4a19..000000000
--- a/vendor/github.com/buger/jsonparser/bytes_safe.go
+++ /dev/null
@@ -1,25 +0,0 @@
-// +build appengine appenginevm
-
-package jsonparser
-
-import (
- "strconv"
-)
-
-// See fastbytes_unsafe.go for explanation on why *[]byte is used (signatures must be consistent with those in that file)
-
-func equalStr(b *[]byte, s string) bool {
- return string(*b) == s
-}
-
-func parseFloat(b *[]byte) (float64, error) {
- return strconv.ParseFloat(string(*b), 64)
-}
-
-func bytesToString(b *[]byte) string {
- return string(*b)
-}
-
-func StringToBytes(s string) []byte {
- return []byte(s)
-}