mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 14:38:58 +00:00
14 lines
336 B
Go
14 lines
336 B
Go
//go:build appengine || js
|
|
// +build appengine js
|
|
|
|
package util
|
|
|
|
// BytesToReadOnlyString returns a string converted from given bytes.
|
|
func BytesToReadOnlyString(b []byte) string {
|
|
return string(b)
|
|
}
|
|
|
|
// StringToReadOnlyBytes returns bytes converted from given string.
|
|
func StringToReadOnlyBytes(s string) []byte {
|
|
return []byte(s)
|
|
}
|