...

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

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

     1  //go: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