...

Source file src/github.com/go-redis/redis/internal/util/safe.go

Documentation: github.com/go-redis/redis/internal/util

     1  // +build appengine
     2  
     3  package util
     4  
     5  func BytesToString(b []byte) string {
     6  	return string(b)
     7  }
     8  
     9  func StringToBytes(s string) []byte {
    10  	return []byte(s)
    11  }
    12  

View as plain text