1
0
mirror of https://github.com/IBM/fp-go.git synced 2025-11-29 22:38:29 +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)
}