1
0
mirror of https://github.com/IBM/fp-go.git synced 2025-06-23 00:27:49 +02:00
Files
fp-go/bytes/bytes.go

6 lines
68 B
Go
Raw Normal View History

package bytes
func ToString(a []byte) string {
return string(a)
}