13 lines
185 B
Go
13 lines
185 B
Go
|
// +build !appengine
|
||
|
|
||
|
package util
|
||
|
|
||
|
import (
|
||
|
"unsafe"
|
||
|
)
|
||
|
|
||
|
// BytesToString converts byte slice to string.
|
||
|
func BytesToString(b []byte) string {
|
||
|
return *(*string)(unsafe.Pointer(&b))
|
||
|
}
|