diff options
Diffstat (limited to 'vendor/github.com/vmihailenco/msgpack/v5/safe.go')
-rw-r--r-- | vendor/github.com/vmihailenco/msgpack/v5/safe.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/github.com/vmihailenco/msgpack/v5/safe.go b/vendor/github.com/vmihailenco/msgpack/v5/safe.go new file mode 100644 index 00000000..8352c9dc --- /dev/null +++ b/vendor/github.com/vmihailenco/msgpack/v5/safe.go @@ -0,0 +1,13 @@ +// +build appengine + +package msgpack + +// bytesToString converts byte slice to string. +func bytesToString(b []byte) string { + return string(b) +} + +// stringToBytes converts string to byte slice. +func stringToBytes(s string) []byte { + return []byte(s) +} |