blob: 862ff0eb3afec24ae7e8957ea2ef0b8542cdc927 [file] [log] [blame]
Joey Armstronga6af1522023-01-17 16:06:16 -05001// +build appengine
2
3package internal
4
5func String(b []byte) string {
6 return string(b)
7}
8
9func Bytes(s string) []byte {
10 return []byte(s)
11}