gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

safe.go (251B)


      1 // +build appengine
      2 
      3 package msgpack
      4 
      5 // bytesToString converts byte slice to string.
      6 func bytesToString(b []byte) string {
      7 	return string(b)
      8 }
      9 
     10 // stringToBytes converts string to byte slice.
     11 func stringToBytes(s string) []byte {
     12 	return []byte(s)
     13 }